27 lines
356 B
SCSS
27 lines
356 B
SCSS
|
/*
|
||
|
|
||
|
COLORS
|
||
|
|
||
|
$primary: #;
|
||
|
$secondary: #;
|
||
|
$tertiary: #;
|
||
|
$neutral: #;
|
||
|
$white: #;
|
||
|
$black: #;
|
||
|
|
||
|
FONTS
|
||
|
|
||
|
$head: ;
|
||
|
$body: ;
|
||
|
$mono: ;
|
||
|
*/
|
||
|
|
||
|
:root, [data-selected-theme="light"] {
|
||
|
--theme-background: rgb(230, 245, 230);
|
||
|
--theme-text: rgb(8, 10, 8);
|
||
|
}
|
||
|
|
||
|
[data-selected-theme="dark"] {
|
||
|
--theme-background: rgb(8, 10, 8);
|
||
|
--theme-text: rgb(230, 245, 230);
|
||
|
}
|