|
2 | 2 | /* Globals */ |
3 | 3 |
|
4 | 4 | :root { |
5 | | - --sidebar-width: 300px; |
| 5 | + --sidebar-width: 400px; |
6 | 6 | --page-padding: 15px; |
7 | 7 | --content-max-width: 750px; |
8 | 8 | --menu-bar-height: 50px; |
9 | | - --mono-font: "Source Code Pro", Consolas, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace, monospace; |
10 | | - --code-font-size: 0.875em /* please adjust the ace font size accordingly in editor.js */ |
| 9 | + --mono-font: "JetBrains Mono", Consolas, "Ubuntu Mono", Menlo, "DejaVu Sans Mono", monospace, monospace; |
| 10 | + --code-font-size: 0.875em |
11 | 11 | } |
12 | 12 |
|
13 | | -/* Themes */ |
| 13 | +.tokyonight { |
| 14 | + --bg: #222436; |
| 15 | + --fg: #c8d3f5; |
14 | 16 |
|
15 | | -.ayu { |
16 | | - --bg: hsl(210, 25%, 8%); |
17 | | - --fg: #c5c5c5; |
18 | | - |
19 | | - --sidebar-bg: #14191f; |
20 | | - --sidebar-fg: #c8c9db; |
21 | | - --sidebar-non-existant: #5c6773; |
22 | | - --sidebar-active: #ffb454; |
23 | | - --sidebar-spacer: #2d334f; |
| 17 | + --sidebar-bg: #1b1d2b; |
| 18 | + --sidebar-fg: #c8d3f5; |
| 19 | + --sidebar-non-existant: #444a73; |
| 20 | + --sidebar-active: #2196F3; |
| 21 | + --sidebar-spacer: #82aaff; |
24 | 22 |
|
25 | 23 | --scrollbar: var(--sidebar-fg); |
26 | 24 |
|
27 | | - --icons: #737480; |
28 | | - --icons-hover: #b7b9cc; |
| 25 | + --icons: #c8d3f5; |
| 26 | + --icons-hover: #c8d3f5; |
29 | 27 |
|
30 | | - --links: #0096cf; |
| 28 | + --links: #c099ff; |
31 | 29 |
|
32 | | - --inline-code-color: #ffb454; |
| 30 | + --inline-code-color: #82aaff; |
33 | 31 |
|
34 | 32 | --theme-popup-bg: #14191f; |
35 | 33 | --theme-popup-border: #5c6773; |
|
38 | 36 | --quote-bg: hsl(226, 15%, 17%); |
39 | 37 | --quote-border: hsl(226, 15%, 22%); |
40 | 38 |
|
41 | | - --table-border-color: hsl(210, 25%, 13%); |
42 | | - --table-header-bg: hsl(210, 25%, 28%); |
43 | | - --table-alternate-bg: hsl(210, 25%, 11%); |
| 39 | + --table-border-color: #82aaff; |
| 40 | + --table-header-bg: #444a73; |
| 41 | + --table-alternate-bg: #82aaff; |
44 | 42 |
|
45 | 43 | --searchbar-border-color: #848484; |
46 | 44 | --searchbar-bg: #424242; |
|
52 | 50 | --search-mark-bg: #e3b171; |
53 | 51 | } |
54 | 52 |
|
55 | | -.coal { |
56 | | - --bg: hsl(200, 7%, 8%); |
57 | | - --fg: #98a3ad; |
58 | | - |
59 | | - --sidebar-bg: #292c2f; |
60 | | - --sidebar-fg: #a1adb8; |
61 | | - --sidebar-non-existant: #505254; |
62 | | - --sidebar-active: #3473ad; |
63 | | - --sidebar-spacer: #393939; |
64 | | - |
65 | | - --scrollbar: var(--sidebar-fg); |
66 | | - |
67 | | - --icons: #43484d; |
68 | | - --icons-hover: #b3c0cc; |
69 | | - |
70 | | - --links: #2b79a2; |
71 | | - |
72 | | - --inline-code-color: #c5c8c6; |
73 | | - |
74 | | - --theme-popup-bg: #141617; |
75 | | - --theme-popup-border: #43484d; |
76 | | - --theme-hover: #1f2124; |
77 | | - |
78 | | - --quote-bg: hsl(234, 21%, 18%); |
79 | | - --quote-border: hsl(234, 21%, 23%); |
80 | | - |
81 | | - --table-border-color: hsl(200, 7%, 13%); |
82 | | - --table-header-bg: hsl(200, 7%, 28%); |
83 | | - --table-alternate-bg: hsl(200, 7%, 11%); |
84 | | - |
85 | | - --searchbar-border-color: #aaa; |
86 | | - --searchbar-bg: #b7b7b7; |
87 | | - --searchbar-fg: #000; |
88 | | - --searchbar-shadow-color: #aaa; |
89 | | - --searchresults-header-fg: #666; |
90 | | - --searchresults-border-color: #98a3ad; |
91 | | - --searchresults-li-bg: #2b2b2f; |
92 | | - --search-mark-bg: #355c7d; |
93 | | -} |
94 | | - |
95 | | -.light { |
96 | | - --bg: hsl(0, 0%, 100%); |
97 | | - --fg: hsl(0, 0%, 0%); |
98 | | - |
99 | | - --sidebar-bg: #fafafa; |
100 | | - --sidebar-fg: hsl(0, 0%, 0%); |
101 | | - --sidebar-non-existant: #aaaaaa; |
102 | | - --sidebar-active: #1f1fff; |
103 | | - --sidebar-spacer: #f4f4f4; |
104 | | - |
105 | | - --scrollbar: #8F8F8F; |
106 | | - |
107 | | - --icons: #747474; |
108 | | - --icons-hover: #000000; |
109 | | - |
110 | | - --links: #20609f; |
111 | | - |
112 | | - --inline-code-color: #301900; |
113 | | - |
114 | | - --theme-popup-bg: #fafafa; |
115 | | - --theme-popup-border: #cccccc; |
116 | | - --theme-hover: #e6e6e6; |
117 | | - |
118 | | - --quote-bg: hsl(197, 37%, 96%); |
119 | | - --quote-border: hsl(197, 37%, 91%); |
120 | | - |
121 | | - --table-border-color: hsl(0, 0%, 95%); |
122 | | - --table-header-bg: hsl(0, 0%, 80%); |
123 | | - --table-alternate-bg: hsl(0, 0%, 97%); |
124 | | - |
125 | | - --searchbar-border-color: #aaa; |
126 | | - --searchbar-bg: #fafafa; |
127 | | - --searchbar-fg: #000; |
128 | | - --searchbar-shadow-color: #aaa; |
129 | | - --searchresults-header-fg: #666; |
130 | | - --searchresults-border-color: #888; |
131 | | - --searchresults-li-bg: #e4f2fe; |
132 | | - --search-mark-bg: #a2cff5; |
133 | | -} |
134 | | - |
135 | | -.navy { |
136 | | - --bg: hsl(226, 23%, 11%); |
137 | | - --fg: #bcbdd0; |
138 | | - |
139 | | - --sidebar-bg: #282d3f; |
140 | | - --sidebar-fg: #c8c9db; |
141 | | - --sidebar-non-existant: #505274; |
142 | | - --sidebar-active: #2b79a2; |
143 | | - --sidebar-spacer: #2d334f; |
144 | | - |
145 | | - --scrollbar: var(--sidebar-fg); |
146 | | - |
147 | | - --icons: #737480; |
148 | | - --icons-hover: #b7b9cc; |
149 | | - |
150 | | - --links: #2b79a2; |
151 | | - |
152 | | - --inline-code-color: #c5c8c6; |
153 | | - |
154 | | - --theme-popup-bg: #161923; |
155 | | - --theme-popup-border: #737480; |
156 | | - --theme-hover: #282e40; |
157 | | - |
158 | | - --quote-bg: hsl(226, 15%, 17%); |
159 | | - --quote-border: hsl(226, 15%, 22%); |
160 | | - |
161 | | - --table-border-color: hsl(226, 23%, 16%); |
162 | | - --table-header-bg: hsl(226, 23%, 31%); |
163 | | - --table-alternate-bg: hsl(226, 23%, 14%); |
164 | | - |
165 | | - --searchbar-border-color: #aaa; |
166 | | - --searchbar-bg: #aeaec6; |
167 | | - --searchbar-fg: #000; |
168 | | - --searchbar-shadow-color: #aaa; |
169 | | - --searchresults-header-fg: #5f5f71; |
170 | | - --searchresults-border-color: #5c5c68; |
171 | | - --searchresults-li-bg: #242430; |
172 | | - --search-mark-bg: #a2cff5; |
173 | | -} |
174 | | - |
175 | | -.rust { |
176 | | - --bg: hsl(60, 9%, 87%); |
177 | | - --fg: #262625; |
178 | | - |
179 | | - --sidebar-bg: #3b2e2a; |
180 | | - --sidebar-fg: #c8c9db; |
181 | | - --sidebar-non-existant: #505254; |
182 | | - --sidebar-active: #e69f67; |
183 | | - --sidebar-spacer: #45373a; |
184 | | - |
185 | | - --scrollbar: var(--sidebar-fg); |
186 | | - |
187 | | - --icons: #737480; |
188 | | - --icons-hover: #262625; |
189 | | - |
190 | | - --links: #2b79a2; |
191 | | - |
192 | | - --inline-code-color: #6e6b5e; |
193 | | - |
194 | | - --theme-popup-bg: #e1e1db; |
195 | | - --theme-popup-border: #b38f6b; |
196 | | - --theme-hover: #99908a; |
197 | | - |
198 | | - --quote-bg: hsl(60, 5%, 75%); |
199 | | - --quote-border: hsl(60, 5%, 70%); |
200 | | - |
201 | | - --table-border-color: hsl(60, 9%, 82%); |
202 | | - --table-header-bg: #b3a497; |
203 | | - --table-alternate-bg: hsl(60, 9%, 84%); |
204 | | - |
205 | | - --searchbar-border-color: #aaa; |
206 | | - --searchbar-bg: #fafafa; |
207 | | - --searchbar-fg: #000; |
208 | | - --searchbar-shadow-color: #aaa; |
209 | | - --searchresults-header-fg: #666; |
210 | | - --searchresults-border-color: #888; |
211 | | - --searchresults-li-bg: #dec2a2; |
212 | | - --search-mark-bg: #e69f67; |
213 | | -} |
214 | | - |
215 | 53 | @media (prefers-color-scheme: dark) { |
216 | 54 | .light.no-js { |
217 | 55 | --bg: hsl(200, 7%, 8%); |
|
0 commit comments