mirror of
https://gitlab.freedesktop.org/pipewire/pipewire
synced 2024-11-05 16:26:16 +00:00
a168e4261f
Otherwise when a user is visiting with dark color scheme preference, the code fragments would appear with far too bright colors.
19 lines
492 B
CSS
19 lines
492 B
CSS
:root {
|
|
/* --page-background-color: #729fcf; */
|
|
--primary-color: #729fcf;
|
|
--primary-dark-color: #729fcf;
|
|
--header-background: #729fcf;
|
|
--header-foreground: rgba(255, 255, 255, 0.7);
|
|
--font-family: 'Source Sans Pro', 'Source Sans', sans-serif;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--code-background: #f5f5f5;
|
|
--code-foreground: #333333;
|
|
--fragment-background: #f5f5f5;
|
|
--fragment-foreground: #333333;
|
|
--fragment-keyword: #c7254e;
|
|
--fragment-link: #729fcf;
|
|
}
|
|
}
|