mirror of
https://github.com/JessSystemV/zProtect.git
synced 2025-01-07 06:35:35 +00:00
20 lines
331 B
SCSS
20 lines
331 B
SCSS
|
:root {
|
||
|
scroll-behavior: smooth;
|
||
|
|
||
|
// brand colors
|
||
|
--c-brand: #936edb !important;
|
||
|
--c-brand-light: #b39ae6 !important;
|
||
|
|
||
|
// custom tip
|
||
|
--c-tip: #b39ae6 !important;
|
||
|
}
|
||
|
|
||
|
html.dark {
|
||
|
// brand colors
|
||
|
--c-brand: #936edb !important;
|
||
|
--c-brand-light: #b39ae6 !important;
|
||
|
|
||
|
// custom tip
|
||
|
--c-tip: #b39ae6 !important;
|
||
|
}
|