git-subtree-dir: frontend-vue git-subtree-mainline: 4fa5504697d28b537980ae9cbc3597e415cb94cb git-subtree-split: 041986f5cd6e67f5367fd047c71b8107865fa5af
17 lines
342 B
SCSS
17 lines
342 B
SCSS
:root {
|
|
--color-bg: #fff;
|
|
--color-bg-secondary: #fafafa;
|
|
--color-bg-tertiary: #f5f5f5;
|
|
--color-text: #000;
|
|
}
|
|
|
|
html.dark {
|
|
--color-bg: #131A27;
|
|
--color-bg-secondary: #050505;
|
|
--color-bg-tertiary: #20222A;
|
|
--color-bg-quaternary: #24252A;
|
|
--color-bg-quinary: #29303c;
|
|
--color-text: #fff;
|
|
--color-text-secondary: #C9C9C9;
|
|
}
|