mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 09:29:59 +00:00
22 lines
453 B
CSS
22 lines
453 B
CSS
:root {
|
|
--c-primary: #CF7C17;
|
|
--c-primary-active: #A45923;
|
|
--c-border: #88888820;
|
|
--c-bg-base: #fff;
|
|
--c-bg-active: #f6f6f6;
|
|
--c-bg-code: #00000006;
|
|
--c-bg-selection: #8885;
|
|
--c-text-base: #222;
|
|
--c-text-secondary: #686868;
|
|
--c-text-secondary-light: #919191;
|
|
}
|
|
|
|
.dark {
|
|
--c-bg-base: #111;
|
|
--c-bg-active: #191919;
|
|
--c-bg-code: #ffffff06;
|
|
--c-text-base: #fff;
|
|
--c-text-secondary: #888;
|
|
--c-text-secondary-light: #686868;
|
|
}
|