You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
358 B
18 lines
358 B
:root {
|
|
--primary-color: #272736;
|
|
--text-color: #ffffeb;
|
|
|
|
/* Overriding DP DS */
|
|
--body-background: var(--primary-color);
|
|
--body-color: var(--text-color);
|
|
|
|
--nav-color: var(--primary-color);
|
|
--nav-background: var(--text-color);
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
--primary-color: #ffffeb;
|
|
--text-color: #272736;
|
|
}
|
|
}
|
|
|