site/ruben.css

15 lines
199 B
CSS
Raw Normal View History

2025-04-02 14:17:31 -05:00
/*
2025-04-02 14:17:31 -05:00
replaces the accent color with ruben flavored goo
*/
2025-04-02 14:17:31 -05:00
:root {
--accent: #00d131 !important;
}
@media (prefers-color-scheme: dark) {
:root {
2025-04-02 14:17:31 -05:00
--accent: #65ff88 !important;
}
}