Updated selected color to match between sidebar and main table

This commit is contained in:
Carve 2024-10-10 09:13:33 -04:00
parent aa56d09b8c
commit e0d4b474ae
3 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
--darkmode-background: #202020; --darkmode-background: #202020;
--darkmode-background-alt: #242424; --darkmode-background-alt: #242424;
--darkmode-background-alt2: #4e4e4e; --darkmode-background-alt2: #4e4e4e;
--darkmode-background-light: #aaaaaa;
--darkmode-text: #c2c2c2; --darkmode-text: #c2c2c2;
--darkmode-text-alt: #d3d3d3; --darkmode-text-alt: #d3d3d3;
--darkmode-line-color: #2F3437; --darkmode-line-color: #2F3437;

View File

@ -21,7 +21,7 @@
.dynamicTable tbody tr.selected, .dynamicTable tbody tr.selected,
.dynamicTable tbody tr:hover { .dynamicTable tbody tr:hover {
background-color: var(--darkmode-background-alt2); background-color: var(--darkmode-background-light);
color: var(--darkmode-text-alt) color: var(--darkmode-text-alt)
} }

View File

@ -303,7 +303,7 @@ hr {
} }
.selectedFilter { .selectedFilter {
background-color: var(--darkmode-text-alt); background-color: var(--darkmode-background-light);
color: var(--darkmode-background); color: var(--darkmode-background);
} }