32 lines
665 B
SCSS
32 lines
665 B
SCSS
// Add your own CSS here!
|
|
|
|
:root {
|
|
--light: #d7eff7;
|
|
--dark: #06262B;
|
|
--secondary: #06262B;
|
|
--tertiary: #84a59d;
|
|
--visited: #afbfc9;
|
|
--primary: #207e8f;
|
|
--gray: #4e4e4e;
|
|
--lightgray: #f0f0f0;
|
|
--outlinegray: #dadada;
|
|
--million-progress-bar-color: var(--secondary);
|
|
--highlighted: #92541a;
|
|
}
|
|
|
|
[saved-theme="dark"] {
|
|
--light: #1e1e21 !important;
|
|
--dark: #fbfffe !important;
|
|
--secondary: #6b879a !important;
|
|
--visited: #4a575e !important;
|
|
--tertiary: #84a59d !important;
|
|
--primary: #f58382 !important;
|
|
--gray: #d4d4d4 !important;
|
|
--lightgray: #292633 !important;
|
|
--outlinegray: #343434 !important;
|
|
--highlighted: #574010;
|
|
}
|
|
|
|
|
|
|