-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.css
31 lines (29 loc) · 1.07 KB
/
colors.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
html {
--warning: darkorange;
}
.light-mode {
--text-color: hsla(0deg 0% 15% / 100%);
--background-color: hsla(0deg 0% 85% / 100%);
--highlight-color: hsla(132deg 33% 29% / 100%);
--highlight-hover: hsla(120deg 77% 36% / 100%);
--background-loader: hsla(0deg 0% 0% / 5%);
--shadow: rgba(0 0 0 / 50%);
--background-offset: hsla(204deg 8% 76% / 100%);
--code-keyword: hsla(31deg 100% 40% / 100%);
--code-attribute: hsla(219deg 100% 40% / 100%);
--code-string: hsla(130deg 100% 40% / 100%);
--highlight-text: hsla(0deg 0% 100% / 100%);
}
.dark-mode {
--background-color: hsla(0deg 0% 15% / 100%);
--text-color: hsla(0deg 0% 85% / 100%);
--background-loader: hsla(0deg 0% 100% / 5%);
--highlight-color: hsla(120deg 77% 36% / 100%);
--highlight-hover: hsla(132deg 33% 29% / 100%);
--background-offset: hsla(0deg 0% 25% / 100%);
--shadow: rgba(255 255 255 / 50%);
--code-keyword: hsla(31deg 100% 60% / 100%);
--code-attribute: hsla(219deg 100% 60% / 100%);
--code-string: hsla(130deg 100% 60% / 100%);
--highlight-text: hsla(0deg 0% 0% / 100%);
}