mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-13 02:02:21 +01:00
36 lines
927 B
CSS
36 lines
927 B
CSS
:root {
|
|
--pimary: #0d6efd;
|
|
--primary-shade: #0d54bd;
|
|
--primary-contrast: #ffffff;
|
|
--primary-contrast-hover: rgba(255, 255, 255, 0.7);
|
|
|
|
--background-color: #ffffff;
|
|
--background-shade: #dddddd;
|
|
--background-shade-light: #f7f7f7;
|
|
|
|
--card-background: #ffffff;
|
|
--card-background-shade: rgba(0, 0, 0, 0.03);
|
|
--card-background-contrast: #000000;
|
|
|
|
--title-color: #000000;
|
|
--sub-title-color: #dddddd;
|
|
--link-color: #007bff;
|
|
--text-color: #000000;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background-color: #202020;
|
|
--background-shade: #404040;
|
|
--background-shade-light: #696969;
|
|
|
|
--card-background: #696969;
|
|
--card-background-shade: #404040;
|
|
--card-background-contrast: #ffffff;
|
|
|
|
--title-color: #000000;
|
|
--sub-title-color: #dddddd;
|
|
--link-color: #007bff;
|
|
--text-color: #ffffff;
|
|
}
|
|
} |