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; }