elk/styles/vars.css

39 lines
767 B
CSS
Raw Normal View History

2022-11-14 00:05:32 +08:00
:root {
--c-primary: #EA9E44;
--c-primary-active: #C16929;
2022-12-13 00:10:04 +01:00
--c-primary-light: #EA9E4466;
--c-border: #eee;
2022-11-30 12:50:29 +08:00
2022-11-23 10:16:31 +08:00
--c-bg-base: #fff;
2022-11-23 16:08:49 +08:00
--c-bg-active: #f6f6f6;
2022-11-24 11:42:03 +08:00
--c-bg-code: #00000006;
--c-bg-selection: #8885;
2022-12-07 00:51:29 +01:00
--c-bg-fade: #EA9E4411;
2022-11-30 12:50:29 +08:00
--c-text-base: #232323;
2022-12-13 20:25:03 +01:00
--c-text-code: #63470c;
--c-text-secondary: #686868;
--c-text-secondary-light: #919191;
2022-11-30 12:50:29 +08:00
--c-bg-btn-disabled: #a1a1a1;
--c-text-btn-disabled: #fff;
--c-text-btn: #232323;
2022-11-23 10:16:31 +08:00
}
.dark {
--c-border: #222;
2022-11-23 10:16:31 +08:00
--c-bg-base: #111;
2022-11-27 11:57:20 +08:00
--c-bg-active: #191919;
2022-11-24 11:42:03 +08:00
--c-bg-code: #ffffff06;
2022-12-07 00:51:29 +01:00
--c-bg-fade: #EA9E4411;
2022-11-30 12:50:29 +08:00
2022-11-23 10:16:31 +08:00
--c-text-base: #fff;
2022-12-13 19:49:42 +01:00
--c-text-code: #ecd88e;
--c-text-secondary: #888;
--c-text-secondary-light: #686868;
2022-11-30 12:50:29 +08:00
--c-bg-btn-disabled: #2a2a2a;
--c-text-btn-disabled: #919191;
2022-11-14 00:05:32 +08:00
}