fix(example plugin): text color in dark mode

This commit is contained in:
Anthony Rubick
2025-09-13 02:47:55 -05:00
parent 1c26d60c8f
commit e2c0fe3abf
2 changed files with 4 additions and 4 deletions

View File

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

View File

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