35 lines
No EOL
655 B
CSS
35 lines
No EOL
655 B
CSS
/*
|
|
|
|
replaces the accent color with ruben flavored goo
|
|
|
|
*/
|
|
|
|
:root {
|
|
--accent: #00d131 !important;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
.nav-baselink, .nav-accessibility {
|
|
background-color: var(--accent) !important;
|
|
color: var(--foreground) !important;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--accent: #65ff88 !important;
|
|
}
|
|
}
|
|
|
|
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;
|
|
} |