mirror of
https://github.com/rubickCenter/rubick
synced 2025-07-19 14:19:39 +08:00
26 lines
610 B
Plaintext
26 lines
610 B
Plaintext
:root {
|
|
--color-text-primary: rgba(0, 0, 0, 0.85);
|
|
--color-text-content: #141414;
|
|
--color-text-desc: rgba(0, 0, 0, 0.45);
|
|
// 背景色
|
|
--color-body-bg: #fff;
|
|
--color-menu-bg: rgb(248, 248, 248);
|
|
--color-list-hover: rgba(247, 247, 247);
|
|
--color-input-hover: #fff;
|
|
// 边框
|
|
--color-border-light: #f0f0f0;
|
|
}
|
|
|
|
.dark {
|
|
--color-text-primary: #e8e8f0;
|
|
--color-text-content: #ccccd8;
|
|
--color-text-desc: #8f8fa6;
|
|
// 背景色
|
|
--color-body-bg: #1c1c28;
|
|
--color-menu-bg: #1c1c28;
|
|
--color-list-hover: #2c2f3b;
|
|
--color-input-hover: #444d;
|
|
// 边框
|
|
--color-border-light: #33333d;
|
|
}
|