fisch/static/css/colors.css
2025-03-04 20:18:55 +01:00

28 lines
No EOL
504 B
CSS
Executable file

:root {
--fg: #e8e6e3;
--fg-inactive: #999999;
--bg: #181a1b;
--bg-light: black;
--bg-border: #888888;
--accent: #a9daef;
--danger: #e16363;
--invalid: #d73030;
--contrast: white;
--link: #6f6fff;
--link-visited: #bb88e9;
}
@media (prefers-color-scheme: light) {
:root {
--fg: #071419;
--fg-inactive: #4d636c;
--bg: #e0ecff;
--bg-light: #bcc5d5;
--bg-border: #888888;
--accent: #333333;
--danger: #be0000;
--contrast: black;
--link: #0000ee;
--link-visited: #551a8b;
}
}