From e2c0fe3abfeacc8b1fb5d7f763e6d98447870b5c Mon Sep 17 00:00:00 2001 From: Anthony Rubick <68485672+AnthonyMichaelTDM@users.noreply.github.com> Date: Sat, 13 Sep 2025 02:47:55 -0500 Subject: [PATCH] fix(example plugin): text color in dark mode --- example/plugins/plugin2plugin-comms-peer1/www/index.html | 4 ++-- example/plugins/plugin2plugin-comms-peer2/www/index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/example/plugins/plugin2plugin-comms-peer1/www/index.html b/example/plugins/plugin2plugin-comms-peer1/www/index.html index 0f4961a..312a1cb 100644 --- a/example/plugins/plugin2plugin-comms-peer1/www/index.html +++ b/example/plugins/plugin2plugin-comms-peer1/www/index.html @@ -21,12 +21,12 @@ z-index: 1000; } .sent-message { - background-color: #d4edda; + background-color: var(--theme_bg_primary); border-left: 5px solid #155724; animation: fadeIn 0.5s; } .received-message { - background-color: #cce5ff; + background-color: var(--theme_bg_secondary); border-left: 5px solid #004085; animation: fadeIn 0.5s; } diff --git a/example/plugins/plugin2plugin-comms-peer2/www/index.html b/example/plugins/plugin2plugin-comms-peer2/www/index.html index 9349791..b39f74f 100644 --- a/example/plugins/plugin2plugin-comms-peer2/www/index.html +++ b/example/plugins/plugin2plugin-comms-peer2/www/index.html @@ -21,12 +21,12 @@ z-index: 1000; } .sent-message { - background-color: #d4edda; + background-color: var(--theme_bg_primary); border-left: 5px solid #155724; animation: fadeIn 0.5s; } .received-message { - background-color: #cce5ff; + background-color: var(--theme_bg_secondary); border-left: 5px solid #004085; animation: fadeIn 0.5s; }