2025-04-02 14:17:31 -05:00
|
|
|
/*
|
2024-12-30 23:39:05 -06:00
|
|
|
|
2025-04-02 14:17:31 -05:00
|
|
|
replaces the accent color with ruben flavored goo
|
2024-12-30 23:39:05 -06:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2025-04-02 14:17:31 -05:00
|
|
|
:root {
|
|
|
|
|
--accent: #00d131 !important;
|
2024-12-30 23:39:05 -06:00
|
|
|
}
|
|
|
|
|
|
2025-04-09 15:20:57 -05:00
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
|
.nav-baselink, .nav-accessibility {
|
|
|
|
|
background-color: var(--accent) !important;
|
|
|
|
|
color: var(--foreground) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-30 23:39:05 -06:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
:root {
|
2025-04-02 14:17:31 -05:00
|
|
|
--accent: #65ff88 !important;
|
2024-12-30 23:39:05 -06:00
|
|
|
}
|
2025-04-09 15:20:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html[data-theme="light"] {
|
|
|
|
|
--accent: #00d131 !important;
|
|
|
|
|
|
|
|
|
|
.nav-baselink, .nav-accessibility {
|
|
|
|
|
background-color: var(--accent) !important;
|
|
|
|
|
color: var(--foreground) !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html[data-theme="dark"] {
|
|
|
|
|
--accent: #65ff88 !important;
|
2024-12-30 23:39:05 -06:00
|
|
|
}
|