@arborium/arborium 1.2.4 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +113 -0
  2. package/dist/arborium.iife.js +2 -2
  3. package/dist/arborium.iife.js.map +1 -1
  4. package/dist/arborium.js +122 -98
  5. package/dist/arborium.js.map +1 -1
  6. package/dist/arborium_host.js +39 -9
  7. package/dist/arborium_host_bg.wasm +0 -0
  8. package/dist/index.d.ts +2 -1
  9. package/dist/plugins-manifest.d.ts +2 -0
  10. package/dist/themes/alabaster.css +1 -0
  11. package/dist/themes/ayu-dark.css +1 -0
  12. package/dist/themes/ayu-light.css +1 -0
  13. package/dist/themes/base-rustdoc.css +69 -426
  14. package/dist/themes/base.css +0 -8
  15. package/dist/themes/catppuccin-frappe.css +1 -0
  16. package/dist/themes/catppuccin-latte.css +1 -0
  17. package/dist/themes/catppuccin-macchiato.css +1 -0
  18. package/dist/themes/catppuccin-mocha.css +1 -0
  19. package/dist/themes/cobalt2.css +1 -0
  20. package/dist/themes/dayfox.css +1 -0
  21. package/dist/themes/desert256.css +1 -0
  22. package/dist/themes/dracula.css +1 -0
  23. package/dist/themes/ef-melissa-dark.css +1 -0
  24. package/dist/themes/github-dark.css +1 -0
  25. package/dist/themes/github-light.css +1 -0
  26. package/dist/themes/gruvbox-dark.css +1 -0
  27. package/dist/themes/gruvbox-light.css +1 -0
  28. package/dist/themes/kanagawa-dragon.css +1 -0
  29. package/dist/themes/light-owl.css +1 -0
  30. package/dist/themes/lucius-light.css +1 -0
  31. package/dist/themes/melange-dark.css +1 -0
  32. package/dist/themes/melange-light.css +1 -0
  33. package/dist/themes/monokai.css +1 -0
  34. package/dist/themes/nord.css +1 -0
  35. package/dist/themes/one-dark.css +1 -0
  36. package/dist/themes/rose-pine-moon.css +1 -0
  37. package/dist/themes/rustdoc-ayu.css +68 -67
  38. package/dist/themes/rustdoc-dark.css +68 -67
  39. package/dist/themes/rustdoc-light.css +68 -67
  40. package/dist/themes/solarized-dark.css +1 -0
  41. package/dist/themes/solarized-light.css +1 -0
  42. package/dist/themes/tokyo-night.css +1 -0
  43. package/dist/themes/zenburn.css +1 -0
  44. package/dist/types.d.ts +38 -1
  45. package/package.json +1 -1
@@ -1,2 +1,4 @@
1
+ /** Version of plugin packages (all @arborium/* packages share this version) */
2
+ export declare const pluginVersion = "2.0.0";
1
3
  /** All available languages */
2
4
  export declare const availableLanguages: string[];
@@ -1,4 +1,5 @@
1
1
  /* Alabaster theme (light) - generated from TOML */
2
+ /* Source: https://github.com/tonsky/vscode-theme-alabaster */
2
3
  /* Defines --arb-*-light variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Ayu Dark theme (dark) - generated from TOML */
2
+ /* Source: https://github.com/ayu-theme/ayu-colors */
2
3
  /* Defines --arb-*-dark variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Ayu Light theme (light) - generated from TOML */
2
+ /* Source: https://github.com/ayu-theme/ayu-colors */
2
3
  /* Defines --arb-*-light variables */
3
4
 
4
5
  :root {
@@ -1,429 +1,72 @@
1
1
  /* Arborium base CSS for rustdoc - uses variable fallback */
2
2
  /* JS dynamically loads one theme at a time */
3
3
 
4
- a-at {
5
- color: var(--arb-at-dark, var(--arb-at-light));
6
- font-weight: var(--arb-at-dark-weight, var(--arb-at-light-weight, normal));
7
- font-style: var(--arb-at-dark-style, var(--arb-at-light-style, normal));
8
- text-decoration: var(--arb-at-dark-decoration, var(--arb-at-light-decoration, none));
9
- }
10
- a-co {
11
- color: var(--arb-co-dark, var(--arb-co-light));
12
- font-weight: var(--arb-co-dark-weight, var(--arb-co-light-weight, normal));
13
- font-style: var(--arb-co-dark-style, var(--arb-co-light-style, normal));
14
- text-decoration: var(--arb-co-dark-decoration, var(--arb-co-light-decoration, none));
15
- }
16
- a-cb {
17
- color: var(--arb-cb-dark, var(--arb-cb-light));
18
- font-weight: var(--arb-cb-dark-weight, var(--arb-cb-light-weight, normal));
19
- font-style: var(--arb-cb-dark-style, var(--arb-cb-light-style, normal));
20
- text-decoration: var(--arb-cb-dark-decoration, var(--arb-cb-light-decoration, none));
21
- }
22
- a-cr {
23
- color: var(--arb-cr-dark, var(--arb-cr-light));
24
- font-weight: var(--arb-cr-dark-weight, var(--arb-cr-light-weight, normal));
25
- font-style: var(--arb-cr-dark-style, var(--arb-cr-light-style, normal));
26
- text-decoration: var(--arb-cr-dark-decoration, var(--arb-cr-light-decoration, none));
27
- }
28
- a-fb {
29
- color: var(--arb-fb-dark, var(--arb-fb-light));
30
- font-weight: var(--arb-fb-dark-weight, var(--arb-fb-light-weight, normal));
31
- font-style: var(--arb-fb-dark-style, var(--arb-fb-light-style, normal));
32
- text-decoration: var(--arb-fb-dark-decoration, var(--arb-fb-light-decoration, none));
33
- }
34
- a-f {
35
- color: var(--arb-f-dark, var(--arb-f-light));
36
- font-weight: var(--arb-f-dark-weight, var(--arb-f-light-weight, normal));
37
- font-style: var(--arb-f-dark-style, var(--arb-f-light-style, normal));
38
- text-decoration: var(--arb-f-dark-decoration, var(--arb-f-light-decoration, none));
39
- }
40
- a-fm {
41
- color: var(--arb-fm-dark, var(--arb-fm-light));
42
- font-weight: var(--arb-fm-dark-weight, var(--arb-fm-light-weight, normal));
43
- font-style: var(--arb-fm-dark-style, var(--arb-fm-light-style, normal));
44
- text-decoration: var(--arb-fm-dark-decoration, var(--arb-fm-light-decoration, none));
45
- }
46
- a-k {
47
- color: var(--arb-k-dark, var(--arb-k-light));
48
- font-weight: var(--arb-k-dark-weight, var(--arb-k-light-weight, normal));
49
- font-style: var(--arb-k-dark-style, var(--arb-k-light-style, normal));
50
- text-decoration: var(--arb-k-dark-decoration, var(--arb-k-light-decoration, none));
51
- }
52
- a-kc {
53
- color: var(--arb-kc-dark, var(--arb-kc-light));
54
- font-weight: var(--arb-kc-dark-weight, var(--arb-kc-light-weight, normal));
55
- font-style: var(--arb-kc-dark-style, var(--arb-kc-light-style, normal));
56
- text-decoration: var(--arb-kc-dark-decoration, var(--arb-kc-light-decoration, none));
57
- }
58
- a-ko {
59
- color: var(--arb-ko-dark, var(--arb-ko-light));
60
- font-weight: var(--arb-ko-dark-weight, var(--arb-ko-light-weight, normal));
61
- font-style: var(--arb-ko-dark-style, var(--arb-ko-light-style, normal));
62
- text-decoration: var(--arb-ko-dark-decoration, var(--arb-ko-light-decoration, none));
63
- }
64
- a-kd {
65
- color: var(--arb-kd-dark, var(--arb-kd-light));
66
- font-weight: var(--arb-kd-dark-weight, var(--arb-kd-light-weight, normal));
67
- font-style: var(--arb-kd-dark-style, var(--arb-kd-light-style, normal));
68
- text-decoration: var(--arb-kd-dark-decoration, var(--arb-kd-light-decoration, none));
69
- }
70
- a-ke {
71
- color: var(--arb-ke-dark, var(--arb-ke-light));
72
- font-weight: var(--arb-ke-dark-weight, var(--arb-ke-light-weight, normal));
73
- font-style: var(--arb-ke-dark-style, var(--arb-ke-light-style, normal));
74
- text-decoration: var(--arb-ke-dark-decoration, var(--arb-ke-light-decoration, none));
75
- }
76
- a-kf {
77
- color: var(--arb-kf-dark, var(--arb-kf-light));
78
- font-weight: var(--arb-kf-dark-weight, var(--arb-kf-light-weight, normal));
79
- font-style: var(--arb-kf-dark-style, var(--arb-kf-light-style, normal));
80
- text-decoration: var(--arb-kf-dark-decoration, var(--arb-kf-light-decoration, none));
81
- }
82
- a-ki {
83
- color: var(--arb-ki-dark, var(--arb-ki-light));
84
- font-weight: var(--arb-ki-dark-weight, var(--arb-ki-light-weight, normal));
85
- font-style: var(--arb-ki-dark-style, var(--arb-ki-light-style, normal));
86
- text-decoration: var(--arb-ki-dark-decoration, var(--arb-ki-light-decoration, none));
87
- }
88
- a-kp {
89
- color: var(--arb-kp-dark, var(--arb-kp-light));
90
- font-weight: var(--arb-kp-dark-weight, var(--arb-kp-light-weight, normal));
91
- font-style: var(--arb-kp-dark-style, var(--arb-kp-light-style, normal));
92
- text-decoration: var(--arb-kp-dark-decoration, var(--arb-kp-light-decoration, none));
93
- }
94
- a-kr {
95
- color: var(--arb-kr-dark, var(--arb-kr-light));
96
- font-weight: var(--arb-kr-dark-weight, var(--arb-kr-light-weight, normal));
97
- font-style: var(--arb-kr-dark-style, var(--arb-kr-light-style, normal));
98
- text-decoration: var(--arb-kr-dark-decoration, var(--arb-kr-light-decoration, none));
99
- }
100
- a-kt {
101
- color: var(--arb-kt-dark, var(--arb-kt-light));
102
- font-weight: var(--arb-kt-dark-weight, var(--arb-kt-light-weight, normal));
103
- font-style: var(--arb-kt-dark-style, var(--arb-kt-light-style, normal));
104
- text-decoration: var(--arb-kt-dark-decoration, var(--arb-kt-light-decoration, none));
105
- }
106
- a-ky {
107
- color: var(--arb-ky-dark, var(--arb-ky-light));
108
- font-weight: var(--arb-ky-dark-weight, var(--arb-ky-light-weight, normal));
109
- font-style: var(--arb-ky-dark-style, var(--arb-ky-light-style, normal));
110
- text-decoration: var(--arb-ky-dark-decoration, var(--arb-ky-light-decoration, none));
111
- }
112
- a-o {
113
- color: var(--arb-o-dark, var(--arb-o-light));
114
- font-weight: var(--arb-o-dark-weight, var(--arb-o-light-weight, normal));
115
- font-style: var(--arb-o-dark-style, var(--arb-o-light-style, normal));
116
- text-decoration: var(--arb-o-dark-decoration, var(--arb-o-light-decoration, none));
117
- }
118
- a-pr {
119
- color: var(--arb-pr-dark, var(--arb-pr-light));
120
- font-weight: var(--arb-pr-dark-weight, var(--arb-pr-light-weight, normal));
121
- font-style: var(--arb-pr-dark-style, var(--arb-pr-light-style, normal));
122
- text-decoration: var(--arb-pr-dark-decoration, var(--arb-pr-light-decoration, none));
123
- }
124
- a-p {
125
- color: var(--arb-p-dark, var(--arb-p-light));
126
- font-weight: var(--arb-p-dark-weight, var(--arb-p-light-weight, normal));
127
- font-style: var(--arb-p-dark-style, var(--arb-p-light-style, normal));
128
- text-decoration: var(--arb-p-dark-decoration, var(--arb-p-light-decoration, none));
129
- }
130
- a-pb {
131
- color: var(--arb-pb-dark, var(--arb-pb-light));
132
- font-weight: var(--arb-pb-dark-weight, var(--arb-pb-light-weight, normal));
133
- font-style: var(--arb-pb-dark-style, var(--arb-pb-light-style, normal));
134
- text-decoration: var(--arb-pb-dark-decoration, var(--arb-pb-light-decoration, none));
135
- }
136
- a-pd {
137
- color: var(--arb-pd-dark, var(--arb-pd-light));
138
- font-weight: var(--arb-pd-dark-weight, var(--arb-pd-light-weight, normal));
139
- font-style: var(--arb-pd-dark-style, var(--arb-pd-light-style, normal));
140
- text-decoration: var(--arb-pd-dark-decoration, var(--arb-pd-light-decoration, none));
141
- }
142
- a-ps {
143
- color: var(--arb-ps-dark, var(--arb-ps-light));
144
- font-weight: var(--arb-ps-dark-weight, var(--arb-ps-light-weight, normal));
145
- font-style: var(--arb-ps-dark-style, var(--arb-ps-light-style, normal));
146
- text-decoration: var(--arb-ps-dark-decoration, var(--arb-ps-light-decoration, none));
147
- }
148
- a-s {
149
- color: var(--arb-s-dark, var(--arb-s-light));
150
- font-weight: var(--arb-s-dark-weight, var(--arb-s-light-weight, normal));
151
- font-style: var(--arb-s-dark-style, var(--arb-s-light-style, normal));
152
- text-decoration: var(--arb-s-dark-decoration, var(--arb-s-light-decoration, none));
153
- }
154
- a-ss {
155
- color: var(--arb-ss-dark, var(--arb-ss-light));
156
- font-weight: var(--arb-ss-dark-weight, var(--arb-ss-light-weight, normal));
157
- font-style: var(--arb-ss-dark-style, var(--arb-ss-light-style, normal));
158
- text-decoration: var(--arb-ss-dark-decoration, var(--arb-ss-light-decoration, none));
159
- }
160
- a-tg {
161
- color: var(--arb-tg-dark, var(--arb-tg-light));
162
- font-weight: var(--arb-tg-dark-weight, var(--arb-tg-light-weight, normal));
163
- font-style: var(--arb-tg-dark-style, var(--arb-tg-light-style, normal));
164
- text-decoration: var(--arb-tg-dark-decoration, var(--arb-tg-light-decoration, none));
165
- }
166
- a-td {
167
- color: var(--arb-td-dark, var(--arb-td-light));
168
- font-weight: var(--arb-td-dark-weight, var(--arb-td-light-weight, normal));
169
- font-style: var(--arb-td-dark-style, var(--arb-td-light-style, normal));
170
- text-decoration: var(--arb-td-dark-decoration, var(--arb-td-light-decoration, none));
171
- }
172
- a-te {
173
- color: var(--arb-te-dark, var(--arb-te-light));
174
- font-weight: var(--arb-te-dark-weight, var(--arb-te-light-weight, normal));
175
- font-style: var(--arb-te-dark-style, var(--arb-te-light-style, normal));
176
- text-decoration: var(--arb-te-dark-decoration, var(--arb-te-light-decoration, none));
177
- }
178
- a-t {
179
- color: var(--arb-t-dark, var(--arb-t-light));
180
- font-weight: var(--arb-t-dark-weight, var(--arb-t-light-weight, normal));
181
- font-style: var(--arb-t-dark-style, var(--arb-t-light-style, normal));
182
- text-decoration: var(--arb-t-dark-decoration, var(--arb-t-light-decoration, none));
183
- }
184
- a-tb {
185
- color: var(--arb-tb-dark, var(--arb-tb-light));
186
- font-weight: var(--arb-tb-dark-weight, var(--arb-tb-light-weight, normal));
187
- font-style: var(--arb-tb-dark-style, var(--arb-tb-light-style, normal));
188
- text-decoration: var(--arb-tb-dark-decoration, var(--arb-tb-light-decoration, none));
189
- }
190
- a-tq {
191
- color: var(--arb-tq-dark, var(--arb-tq-light));
192
- font-weight: var(--arb-tq-dark-weight, var(--arb-tq-light-weight, normal));
193
- font-style: var(--arb-tq-dark-style, var(--arb-tq-light-style, normal));
194
- text-decoration: var(--arb-tq-dark-decoration, var(--arb-tq-light-decoration, none));
195
- }
196
- a-v {
197
- color: var(--arb-v-dark, var(--arb-v-light));
198
- font-weight: var(--arb-v-dark-weight, var(--arb-v-light-weight, normal));
199
- font-style: var(--arb-v-dark-style, var(--arb-v-light-style, normal));
200
- text-decoration: var(--arb-v-dark-decoration, var(--arb-v-light-decoration, none));
201
- }
202
- a-vb {
203
- color: var(--arb-vb-dark, var(--arb-vb-light));
204
- font-weight: var(--arb-vb-dark-weight, var(--arb-vb-light-weight, normal));
205
- font-style: var(--arb-vb-dark-style, var(--arb-vb-light-style, normal));
206
- text-decoration: var(--arb-vb-dark-decoration, var(--arb-vb-light-decoration, none));
207
- }
208
- a-vp {
209
- color: var(--arb-vp-dark, var(--arb-vp-light));
210
- font-weight: var(--arb-vp-dark-weight, var(--arb-vp-light-weight, normal));
211
- font-style: var(--arb-vp-dark-style, var(--arb-vp-light-style, normal));
212
- text-decoration: var(--arb-vp-dark-decoration, var(--arb-vp-light-decoration, none));
213
- }
214
- a-c {
215
- color: var(--arb-c-dark, var(--arb-c-light));
216
- font-weight: var(--arb-c-dark-weight, var(--arb-c-light-weight, normal));
217
- font-style: var(--arb-c-dark-style, var(--arb-c-light-style, normal));
218
- text-decoration: var(--arb-c-dark-decoration, var(--arb-c-light-decoration, none));
219
- }
220
- a-cd {
221
- color: var(--arb-cd-dark, var(--arb-cd-light));
222
- font-weight: var(--arb-cd-dark-weight, var(--arb-cd-light-weight, normal));
223
- font-style: var(--arb-cd-dark-style, var(--arb-cd-light-style, normal));
224
- text-decoration: var(--arb-cd-dark-decoration, var(--arb-cd-light-decoration, none));
225
- }
226
- a-m {
227
- color: var(--arb-m-dark, var(--arb-m-light));
228
- font-weight: var(--arb-m-dark-weight, var(--arb-m-light-weight, normal));
229
- font-style: var(--arb-m-dark-style, var(--arb-m-light-style, normal));
230
- text-decoration: var(--arb-m-dark-decoration, var(--arb-m-light-decoration, none));
231
- }
232
- a-l {
233
- color: var(--arb-l-dark, var(--arb-l-light));
234
- font-weight: var(--arb-l-dark-weight, var(--arb-l-light-weight, normal));
235
- font-style: var(--arb-l-dark-style, var(--arb-l-light-style, normal));
236
- text-decoration: var(--arb-l-dark-decoration, var(--arb-l-light-decoration, none));
237
- }
238
- a-da {
239
- color: var(--arb-da-dark, var(--arb-da-light));
240
- font-weight: var(--arb-da-dark-weight, var(--arb-da-light-weight, normal));
241
- font-style: var(--arb-da-dark-style, var(--arb-da-light-style, normal));
242
- text-decoration: var(--arb-da-dark-decoration, var(--arb-da-light-decoration, none));
243
- }
244
- a-dd {
245
- color: var(--arb-dd-dark, var(--arb-dd-light));
246
- font-weight: var(--arb-dd-dark-weight, var(--arb-dd-light-weight, normal));
247
- font-style: var(--arb-dd-dark-style, var(--arb-dd-light-style, normal));
248
- text-decoration: var(--arb-dd-dark-decoration, var(--arb-dd-light-decoration, none));
249
- }
250
- a-n {
251
- color: var(--arb-n-dark, var(--arb-n-light));
252
- font-weight: var(--arb-n-dark-weight, var(--arb-n-light-weight, normal));
253
- font-style: var(--arb-n-dark-style, var(--arb-n-light-style, normal));
254
- text-decoration: var(--arb-n-dark-decoration, var(--arb-n-light-decoration, none));
255
- }
256
- a-tl {
257
- color: var(--arb-tl-dark, var(--arb-tl-light));
258
- font-weight: var(--arb-tl-dark-weight, var(--arb-tl-light-weight, normal));
259
- font-style: var(--arb-tl-dark-style, var(--arb-tl-light-style, normal));
260
- text-decoration: var(--arb-tl-dark-decoration, var(--arb-tl-light-decoration, none));
261
- }
262
- a-em {
263
- color: var(--arb-em-dark, var(--arb-em-light));
264
- font-weight: var(--arb-em-dark-weight, var(--arb-em-light-weight, normal));
265
- font-style: var(--arb-em-dark-style, var(--arb-em-light-style, normal));
266
- text-decoration: var(--arb-em-dark-decoration, var(--arb-em-light-decoration, none));
267
- }
268
- a-st {
269
- color: var(--arb-st-dark, var(--arb-st-light));
270
- font-weight: var(--arb-st-dark-weight, var(--arb-st-light-weight, normal));
271
- font-style: var(--arb-st-dark-style, var(--arb-st-light-style, normal));
272
- text-decoration: var(--arb-st-dark-decoration, var(--arb-st-light-decoration, none));
273
- }
274
- a-tu {
275
- color: var(--arb-tu-dark, var(--arb-tu-light));
276
- font-weight: var(--arb-tu-dark-weight, var(--arb-tu-light-weight, normal));
277
- font-style: var(--arb-tu-dark-style, var(--arb-tu-light-style, normal));
278
- text-decoration: var(--arb-tu-dark-decoration, var(--arb-tu-light-decoration, none));
279
- }
280
- a-tr {
281
- color: var(--arb-tr-dark, var(--arb-tr-light));
282
- font-weight: var(--arb-tr-dark-weight, var(--arb-tr-light-weight, normal));
283
- font-style: var(--arb-tr-dark-style, var(--arb-tr-light-style, normal));
284
- text-decoration: var(--arb-tr-dark-decoration, var(--arb-tr-light-decoration, none));
285
- }
286
- a-se {
287
- color: var(--arb-se-dark, var(--arb-se-light));
288
- font-weight: var(--arb-se-dark-weight, var(--arb-se-light-weight, normal));
289
- font-style: var(--arb-se-dark-style, var(--arb-se-light-style, normal));
290
- text-decoration: var(--arb-se-dark-decoration, var(--arb-se-light-decoration, none));
291
- }
292
- a-tt {
293
- color: var(--arb-tt-dark, var(--arb-tt-light));
294
- font-weight: var(--arb-tt-dark-weight, var(--arb-tt-light-weight, normal));
295
- font-style: var(--arb-tt-dark-style, var(--arb-tt-light-style, normal));
296
- text-decoration: var(--arb-tt-dark-decoration, var(--arb-tt-light-decoration, none));
297
- }
298
- a-tx {
299
- color: var(--arb-tx-dark, var(--arb-tx-light));
300
- font-weight: var(--arb-tx-dark-weight, var(--arb-tx-light-weight, normal));
301
- font-style: var(--arb-tx-dark-style, var(--arb-tx-light-style, normal));
302
- text-decoration: var(--arb-tx-dark-decoration, var(--arb-tx-light-decoration, none));
303
- }
304
- a-sp {
305
- color: var(--arb-sp-dark, var(--arb-sp-light));
306
- font-weight: var(--arb-sp-dark-weight, var(--arb-sp-light-weight, normal));
307
- font-style: var(--arb-sp-dark-style, var(--arb-sp-light-style, normal));
308
- text-decoration: var(--arb-sp-dark-decoration, var(--arb-sp-light-decoration, none));
309
- }
310
- a-eb {
311
- color: var(--arb-eb-dark, var(--arb-eb-light));
312
- font-weight: var(--arb-eb-dark-weight, var(--arb-eb-light-weight, normal));
313
- font-style: var(--arb-eb-dark-style, var(--arb-eb-light-style, normal));
314
- text-decoration: var(--arb-eb-dark-decoration, var(--arb-eb-light-decoration, none));
315
- }
316
- a-er {
317
- color: var(--arb-er-dark, var(--arb-er-light));
318
- font-weight: var(--arb-er-dark-weight, var(--arb-er-light-weight, normal));
319
- font-style: var(--arb-er-dark-style, var(--arb-er-light-style, normal));
320
- text-decoration: var(--arb-er-dark-decoration, var(--arb-er-light-decoration, none));
321
- }
322
- a-ns {
323
- color: var(--arb-ns-dark, var(--arb-ns-light));
324
- font-weight: var(--arb-ns-dark-weight, var(--arb-ns-light-weight, normal));
325
- font-style: var(--arb-ns-dark-style, var(--arb-ns-light-style, normal));
326
- text-decoration: var(--arb-ns-dark-decoration, var(--arb-ns-light-decoration, none));
327
- }
328
- a-in {
329
- color: var(--arb-in-dark, var(--arb-in-light));
330
- font-weight: var(--arb-in-dark-weight, var(--arb-in-light-weight, normal));
331
- font-style: var(--arb-in-dark-style, var(--arb-in-light-style, normal));
332
- text-decoration: var(--arb-in-dark-decoration, var(--arb-in-light-decoration, none));
333
- }
334
- a-sc {
335
- color: var(--arb-sc-dark, var(--arb-sc-light));
336
- font-weight: var(--arb-sc-dark-weight, var(--arb-sc-light-weight, normal));
337
- font-style: var(--arb-sc-dark-style, var(--arb-sc-light-style, normal));
338
- text-decoration: var(--arb-sc-dark-decoration, var(--arb-sc-light-decoration, none));
339
- }
340
- a-rp {
341
- color: var(--arb-rp-dark, var(--arb-rp-light));
342
- font-weight: var(--arb-rp-dark-weight, var(--arb-rp-light-weight, normal));
343
- font-style: var(--arb-rp-dark-style, var(--arb-rp-light-style, normal));
344
- text-decoration: var(--arb-rp-dark-decoration, var(--arb-rp-light-decoration, none));
345
- }
346
- a-cn {
347
- color: var(--arb-cn-dark, var(--arb-cn-light));
348
- font-weight: var(--arb-cn-dark-weight, var(--arb-cn-light-weight, normal));
349
- font-style: var(--arb-cn-dark-style, var(--arb-cn-light-style, normal));
350
- text-decoration: var(--arb-cn-dark-decoration, var(--arb-cn-light-decoration, none));
351
- }
352
- a-ex {
353
- color: var(--arb-ex-dark, var(--arb-ex-light));
354
- font-weight: var(--arb-ex-dark-weight, var(--arb-ex-light-weight, normal));
355
- font-style: var(--arb-ex-dark-style, var(--arb-ex-light-style, normal));
356
- text-decoration: var(--arb-ex-dark-decoration, var(--arb-ex-light-decoration, none));
357
- }
358
- a-pp {
359
- color: var(--arb-pp-dark, var(--arb-pp-light));
360
- font-weight: var(--arb-pp-dark-weight, var(--arb-pp-light-weight, normal));
361
- font-style: var(--arb-pp-dark-style, var(--arb-pp-light-style, normal));
362
- text-decoration: var(--arb-pp-dark-decoration, var(--arb-pp-light-decoration, none));
363
- }
364
- a-ch {
365
- color: var(--arb-ch-dark, var(--arb-ch-light));
366
- font-weight: var(--arb-ch-dark-weight, var(--arb-ch-light-weight, normal));
367
- font-style: var(--arb-ch-dark-style, var(--arb-ch-light-style, normal));
368
- text-decoration: var(--arb-ch-dark-decoration, var(--arb-ch-light-decoration, none));
369
- }
370
- a-cs {
371
- color: var(--arb-cs-dark, var(--arb-cs-light));
372
- font-weight: var(--arb-cs-dark-weight, var(--arb-cs-light-weight, normal));
373
- font-style: var(--arb-cs-dark-style, var(--arb-cs-light-style, normal));
374
- text-decoration: var(--arb-cs-dark-decoration, var(--arb-cs-light-decoration, none));
375
- }
376
- a-vm {
377
- color: var(--arb-vm-dark, var(--arb-vm-light));
378
- font-weight: var(--arb-vm-dark-weight, var(--arb-vm-light-weight, normal));
379
- font-style: var(--arb-vm-dark-style, var(--arb-vm-light-style, normal));
380
- text-decoration: var(--arb-vm-dark-decoration, var(--arb-vm-light-decoration, none));
381
- }
382
- a-fd {
383
- color: var(--arb-fd-dark, var(--arb-fd-light));
384
- font-weight: var(--arb-fd-dark-weight, var(--arb-fd-light-weight, normal));
385
- font-style: var(--arb-fd-dark-style, var(--arb-fd-light-style, normal));
386
- text-decoration: var(--arb-fd-dark-decoration, var(--arb-fd-light-decoration, none));
387
- }
388
- a-tf {
389
- color: var(--arb-tf-dark, var(--arb-tf-light));
390
- font-weight: var(--arb-tf-dark-weight, var(--arb-tf-light-weight, normal));
391
- font-style: var(--arb-tf-dark-style, var(--arb-tf-light-style, normal));
392
- text-decoration: var(--arb-tf-dark-decoration, var(--arb-tf-light-decoration, none));
393
- }
394
- a-fc {
395
- color: var(--arb-fc-dark, var(--arb-fc-light));
396
- font-weight: var(--arb-fc-dark-weight, var(--arb-fc-light-weight, normal));
397
- font-style: var(--arb-fc-dark-style, var(--arb-fc-light-style, normal));
398
- text-decoration: var(--arb-fc-dark-decoration, var(--arb-fc-light-decoration, none));
399
- }
400
- a-km {
401
- color: var(--arb-km-dark, var(--arb-km-light));
402
- font-weight: var(--arb-km-dark-weight, var(--arb-km-light-weight, normal));
403
- font-style: var(--arb-km-dark-style, var(--arb-km-light-style, normal));
404
- text-decoration: var(--arb-km-dark-decoration, var(--arb-km-light-decoration, none));
405
- }
406
- a-dr {
407
- color: var(--arb-dr-dark, var(--arb-dr-light));
408
- font-weight: var(--arb-dr-dark-weight, var(--arb-dr-light-weight, normal));
409
- font-style: var(--arb-dr-dark-style, var(--arb-dr-light-style, normal));
410
- text-decoration: var(--arb-dr-dark-decoration, var(--arb-dr-light-decoration, none));
411
- }
412
- a-rx {
413
- color: var(--arb-rx-dark, var(--arb-rx-light));
414
- font-weight: var(--arb-rx-dark-weight, var(--arb-rx-light-weight, normal));
415
- font-style: var(--arb-rx-dark-style, var(--arb-rx-light-style, normal));
416
- text-decoration: var(--arb-rx-dark-decoration, var(--arb-rx-light-decoration, none));
417
- }
418
- a-n {
419
- color: var(--arb-n-dark, var(--arb-n-light));
420
- font-weight: var(--arb-n-dark-weight, var(--arb-n-light-weight, normal));
421
- font-style: var(--arb-n-dark-style, var(--arb-n-light-style, normal));
422
- text-decoration: var(--arb-n-dark-decoration, var(--arb-n-light-decoration, none));
423
- }
424
- a-cb {
425
- color: var(--arb-cb-dark, var(--arb-cb-light));
426
- font-weight: var(--arb-cb-dark-weight, var(--arb-cb-light-weight, normal));
427
- font-style: var(--arb-cb-dark-style, var(--arb-cb-light-style, normal));
428
- text-decoration: var(--arb-cb-dark-decoration, var(--arb-cb-light-decoration, none));
429
- }
4
+ a-at { color: var(--arb-at-dark, var(--arb-at-light)); font-weight: var(--arb-at-dark-weight, var(--arb-at-light-weight, normal)); font-style: var(--arb-at-dark-style, var(--arb-at-light-style, normal)); text-decoration: var(--arb-at-dark-decoration, var(--arb-at-light-decoration, none)); }
5
+ a-co { color: var(--arb-co-dark, var(--arb-co-light)); font-weight: var(--arb-co-dark-weight, var(--arb-co-light-weight, normal)); font-style: var(--arb-co-dark-style, var(--arb-co-light-style, normal)); text-decoration: var(--arb-co-dark-decoration, var(--arb-co-light-decoration, none)); }
6
+ a-cb { color: var(--arb-cb-dark, var(--arb-cb-light)); font-weight: var(--arb-cb-dark-weight, var(--arb-cb-light-weight, normal)); font-style: var(--arb-cb-dark-style, var(--arb-cb-light-style, normal)); text-decoration: var(--arb-cb-dark-decoration, var(--arb-cb-light-decoration, none)); }
7
+ a-cr { color: var(--arb-cr-dark, var(--arb-cr-light)); font-weight: var(--arb-cr-dark-weight, var(--arb-cr-light-weight, normal)); font-style: var(--arb-cr-dark-style, var(--arb-cr-light-style, normal)); text-decoration: var(--arb-cr-dark-decoration, var(--arb-cr-light-decoration, none)); }
8
+ a-fb { color: var(--arb-fb-dark, var(--arb-fb-light)); font-weight: var(--arb-fb-dark-weight, var(--arb-fb-light-weight, normal)); font-style: var(--arb-fb-dark-style, var(--arb-fb-light-style, normal)); text-decoration: var(--arb-fb-dark-decoration, var(--arb-fb-light-decoration, none)); }
9
+ a-f { color: var(--arb-f-dark, var(--arb-f-light)); font-weight: var(--arb-f-dark-weight, var(--arb-f-light-weight, normal)); font-style: var(--arb-f-dark-style, var(--arb-f-light-style, normal)); text-decoration: var(--arb-f-dark-decoration, var(--arb-f-light-decoration, none)); }
10
+ a-fm { color: var(--arb-fm-dark, var(--arb-fm-light)); font-weight: var(--arb-fm-dark-weight, var(--arb-fm-light-weight, normal)); font-style: var(--arb-fm-dark-style, var(--arb-fm-light-style, normal)); text-decoration: var(--arb-fm-dark-decoration, var(--arb-fm-light-decoration, none)); }
11
+ a-k { color: var(--arb-k-dark, var(--arb-k-light)); font-weight: var(--arb-k-dark-weight, var(--arb-k-light-weight, normal)); font-style: var(--arb-k-dark-style, var(--arb-k-light-style, normal)); text-decoration: var(--arb-k-dark-decoration, var(--arb-k-light-decoration, none)); }
12
+ a-kc { color: var(--arb-kc-dark, var(--arb-kc-light)); font-weight: var(--arb-kc-dark-weight, var(--arb-kc-light-weight, normal)); font-style: var(--arb-kc-dark-style, var(--arb-kc-light-style, normal)); text-decoration: var(--arb-kc-dark-decoration, var(--arb-kc-light-decoration, none)); }
13
+ a-ko { color: var(--arb-ko-dark, var(--arb-ko-light)); font-weight: var(--arb-ko-dark-weight, var(--arb-ko-light-weight, normal)); font-style: var(--arb-ko-dark-style, var(--arb-ko-light-style, normal)); text-decoration: var(--arb-ko-dark-decoration, var(--arb-ko-light-decoration, none)); }
14
+ a-kd { color: var(--arb-kd-dark, var(--arb-kd-light)); font-weight: var(--arb-kd-dark-weight, var(--arb-kd-light-weight, normal)); font-style: var(--arb-kd-dark-style, var(--arb-kd-light-style, normal)); text-decoration: var(--arb-kd-dark-decoration, var(--arb-kd-light-decoration, none)); }
15
+ a-ke { color: var(--arb-ke-dark, var(--arb-ke-light)); font-weight: var(--arb-ke-dark-weight, var(--arb-ke-light-weight, normal)); font-style: var(--arb-ke-dark-style, var(--arb-ke-light-style, normal)); text-decoration: var(--arb-ke-dark-decoration, var(--arb-ke-light-decoration, none)); }
16
+ a-kf { color: var(--arb-kf-dark, var(--arb-kf-light)); font-weight: var(--arb-kf-dark-weight, var(--arb-kf-light-weight, normal)); font-style: var(--arb-kf-dark-style, var(--arb-kf-light-style, normal)); text-decoration: var(--arb-kf-dark-decoration, var(--arb-kf-light-decoration, none)); }
17
+ a-ki { color: var(--arb-ki-dark, var(--arb-ki-light)); font-weight: var(--arb-ki-dark-weight, var(--arb-ki-light-weight, normal)); font-style: var(--arb-ki-dark-style, var(--arb-ki-light-style, normal)); text-decoration: var(--arb-ki-dark-decoration, var(--arb-ki-light-decoration, none)); }
18
+ a-kp { color: var(--arb-kp-dark, var(--arb-kp-light)); font-weight: var(--arb-kp-dark-weight, var(--arb-kp-light-weight, normal)); font-style: var(--arb-kp-dark-style, var(--arb-kp-light-style, normal)); text-decoration: var(--arb-kp-dark-decoration, var(--arb-kp-light-decoration, none)); }
19
+ a-kr { color: var(--arb-kr-dark, var(--arb-kr-light)); font-weight: var(--arb-kr-dark-weight, var(--arb-kr-light-weight, normal)); font-style: var(--arb-kr-dark-style, var(--arb-kr-light-style, normal)); text-decoration: var(--arb-kr-dark-decoration, var(--arb-kr-light-decoration, none)); }
20
+ a-kt { color: var(--arb-kt-dark, var(--arb-kt-light)); font-weight: var(--arb-kt-dark-weight, var(--arb-kt-light-weight, normal)); font-style: var(--arb-kt-dark-style, var(--arb-kt-light-style, normal)); text-decoration: var(--arb-kt-dark-decoration, var(--arb-kt-light-decoration, none)); }
21
+ a-ky { color: var(--arb-ky-dark, var(--arb-ky-light)); font-weight: var(--arb-ky-dark-weight, var(--arb-ky-light-weight, normal)); font-style: var(--arb-ky-dark-style, var(--arb-ky-light-style, normal)); text-decoration: var(--arb-ky-dark-decoration, var(--arb-ky-light-decoration, none)); }
22
+ a-o { color: var(--arb-o-dark, var(--arb-o-light)); font-weight: var(--arb-o-dark-weight, var(--arb-o-light-weight, normal)); font-style: var(--arb-o-dark-style, var(--arb-o-light-style, normal)); text-decoration: var(--arb-o-dark-decoration, var(--arb-o-light-decoration, none)); }
23
+ a-pr { color: var(--arb-pr-dark, var(--arb-pr-light)); font-weight: var(--arb-pr-dark-weight, var(--arb-pr-light-weight, normal)); font-style: var(--arb-pr-dark-style, var(--arb-pr-light-style, normal)); text-decoration: var(--arb-pr-dark-decoration, var(--arb-pr-light-decoration, none)); }
24
+ a-p { color: var(--arb-p-dark, var(--arb-p-light)); font-weight: var(--arb-p-dark-weight, var(--arb-p-light-weight, normal)); font-style: var(--arb-p-dark-style, var(--arb-p-light-style, normal)); text-decoration: var(--arb-p-dark-decoration, var(--arb-p-light-decoration, none)); }
25
+ a-pb { color: var(--arb-pb-dark, var(--arb-pb-light)); font-weight: var(--arb-pb-dark-weight, var(--arb-pb-light-weight, normal)); font-style: var(--arb-pb-dark-style, var(--arb-pb-light-style, normal)); text-decoration: var(--arb-pb-dark-decoration, var(--arb-pb-light-decoration, none)); }
26
+ a-pd { color: var(--arb-pd-dark, var(--arb-pd-light)); font-weight: var(--arb-pd-dark-weight, var(--arb-pd-light-weight, normal)); font-style: var(--arb-pd-dark-style, var(--arb-pd-light-style, normal)); text-decoration: var(--arb-pd-dark-decoration, var(--arb-pd-light-decoration, none)); }
27
+ a-ps { color: var(--arb-ps-dark, var(--arb-ps-light)); font-weight: var(--arb-ps-dark-weight, var(--arb-ps-light-weight, normal)); font-style: var(--arb-ps-dark-style, var(--arb-ps-light-style, normal)); text-decoration: var(--arb-ps-dark-decoration, var(--arb-ps-light-decoration, none)); }
28
+ a-s { color: var(--arb-s-dark, var(--arb-s-light)); font-weight: var(--arb-s-dark-weight, var(--arb-s-light-weight, normal)); font-style: var(--arb-s-dark-style, var(--arb-s-light-style, normal)); text-decoration: var(--arb-s-dark-decoration, var(--arb-s-light-decoration, none)); }
29
+ a-ss { color: var(--arb-ss-dark, var(--arb-ss-light)); font-weight: var(--arb-ss-dark-weight, var(--arb-ss-light-weight, normal)); font-style: var(--arb-ss-dark-style, var(--arb-ss-light-style, normal)); text-decoration: var(--arb-ss-dark-decoration, var(--arb-ss-light-decoration, none)); }
30
+ a-tg { color: var(--arb-tg-dark, var(--arb-tg-light)); font-weight: var(--arb-tg-dark-weight, var(--arb-tg-light-weight, normal)); font-style: var(--arb-tg-dark-style, var(--arb-tg-light-style, normal)); text-decoration: var(--arb-tg-dark-decoration, var(--arb-tg-light-decoration, none)); }
31
+ a-td { color: var(--arb-td-dark, var(--arb-td-light)); font-weight: var(--arb-td-dark-weight, var(--arb-td-light-weight, normal)); font-style: var(--arb-td-dark-style, var(--arb-td-light-style, normal)); text-decoration: var(--arb-td-dark-decoration, var(--arb-td-light-decoration, none)); }
32
+ a-te { color: var(--arb-te-dark, var(--arb-te-light)); font-weight: var(--arb-te-dark-weight, var(--arb-te-light-weight, normal)); font-style: var(--arb-te-dark-style, var(--arb-te-light-style, normal)); text-decoration: var(--arb-te-dark-decoration, var(--arb-te-light-decoration, none)); }
33
+ a-t { color: var(--arb-t-dark, var(--arb-t-light)); font-weight: var(--arb-t-dark-weight, var(--arb-t-light-weight, normal)); font-style: var(--arb-t-dark-style, var(--arb-t-light-style, normal)); text-decoration: var(--arb-t-dark-decoration, var(--arb-t-light-decoration, none)); }
34
+ a-tb { color: var(--arb-tb-dark, var(--arb-tb-light)); font-weight: var(--arb-tb-dark-weight, var(--arb-tb-light-weight, normal)); font-style: var(--arb-tb-dark-style, var(--arb-tb-light-style, normal)); text-decoration: var(--arb-tb-dark-decoration, var(--arb-tb-light-decoration, none)); }
35
+ a-tq { color: var(--arb-tq-dark, var(--arb-tq-light)); font-weight: var(--arb-tq-dark-weight, var(--arb-tq-light-weight, normal)); font-style: var(--arb-tq-dark-style, var(--arb-tq-light-style, normal)); text-decoration: var(--arb-tq-dark-decoration, var(--arb-tq-light-decoration, none)); }
36
+ a-v { color: var(--arb-v-dark, var(--arb-v-light)); font-weight: var(--arb-v-dark-weight, var(--arb-v-light-weight, normal)); font-style: var(--arb-v-dark-style, var(--arb-v-light-style, normal)); text-decoration: var(--arb-v-dark-decoration, var(--arb-v-light-decoration, none)); }
37
+ a-vb { color: var(--arb-vb-dark, var(--arb-vb-light)); font-weight: var(--arb-vb-dark-weight, var(--arb-vb-light-weight, normal)); font-style: var(--arb-vb-dark-style, var(--arb-vb-light-style, normal)); text-decoration: var(--arb-vb-dark-decoration, var(--arb-vb-light-decoration, none)); }
38
+ a-vp { color: var(--arb-vp-dark, var(--arb-vp-light)); font-weight: var(--arb-vp-dark-weight, var(--arb-vp-light-weight, normal)); font-style: var(--arb-vp-dark-style, var(--arb-vp-light-style, normal)); text-decoration: var(--arb-vp-dark-decoration, var(--arb-vp-light-decoration, none)); }
39
+ a-c { color: var(--arb-c-dark, var(--arb-c-light)); font-weight: var(--arb-c-dark-weight, var(--arb-c-light-weight, normal)); font-style: var(--arb-c-dark-style, var(--arb-c-light-style, normal)); text-decoration: var(--arb-c-dark-decoration, var(--arb-c-light-decoration, none)); }
40
+ a-cd { color: var(--arb-cd-dark, var(--arb-cd-light)); font-weight: var(--arb-cd-dark-weight, var(--arb-cd-light-weight, normal)); font-style: var(--arb-cd-dark-style, var(--arb-cd-light-style, normal)); text-decoration: var(--arb-cd-dark-decoration, var(--arb-cd-light-decoration, none)); }
41
+ a-m { color: var(--arb-m-dark, var(--arb-m-light)); font-weight: var(--arb-m-dark-weight, var(--arb-m-light-weight, normal)); font-style: var(--arb-m-dark-style, var(--arb-m-light-style, normal)); text-decoration: var(--arb-m-dark-decoration, var(--arb-m-light-decoration, none)); }
42
+ a-l { color: var(--arb-l-dark, var(--arb-l-light)); font-weight: var(--arb-l-dark-weight, var(--arb-l-light-weight, normal)); font-style: var(--arb-l-dark-style, var(--arb-l-light-style, normal)); text-decoration: var(--arb-l-dark-decoration, var(--arb-l-light-decoration, none)); }
43
+ a-da { color: var(--arb-da-dark, var(--arb-da-light)); font-weight: var(--arb-da-dark-weight, var(--arb-da-light-weight, normal)); font-style: var(--arb-da-dark-style, var(--arb-da-light-style, normal)); text-decoration: var(--arb-da-dark-decoration, var(--arb-da-light-decoration, none)); }
44
+ a-dd { color: var(--arb-dd-dark, var(--arb-dd-light)); font-weight: var(--arb-dd-dark-weight, var(--arb-dd-light-weight, normal)); font-style: var(--arb-dd-dark-style, var(--arb-dd-light-style, normal)); text-decoration: var(--arb-dd-dark-decoration, var(--arb-dd-light-decoration, none)); }
45
+ a-n { color: var(--arb-n-dark, var(--arb-n-light)); font-weight: var(--arb-n-dark-weight, var(--arb-n-light-weight, normal)); font-style: var(--arb-n-dark-style, var(--arb-n-light-style, normal)); text-decoration: var(--arb-n-dark-decoration, var(--arb-n-light-decoration, none)); }
46
+ a-tl { color: var(--arb-tl-dark, var(--arb-tl-light)); font-weight: var(--arb-tl-dark-weight, var(--arb-tl-light-weight, normal)); font-style: var(--arb-tl-dark-style, var(--arb-tl-light-style, normal)); text-decoration: var(--arb-tl-dark-decoration, var(--arb-tl-light-decoration, none)); }
47
+ a-em { color: var(--arb-em-dark, var(--arb-em-light)); font-weight: var(--arb-em-dark-weight, var(--arb-em-light-weight, normal)); font-style: var(--arb-em-dark-style, var(--arb-em-light-style, normal)); text-decoration: var(--arb-em-dark-decoration, var(--arb-em-light-decoration, none)); }
48
+ a-st { color: var(--arb-st-dark, var(--arb-st-light)); font-weight: var(--arb-st-dark-weight, var(--arb-st-light-weight, normal)); font-style: var(--arb-st-dark-style, var(--arb-st-light-style, normal)); text-decoration: var(--arb-st-dark-decoration, var(--arb-st-light-decoration, none)); }
49
+ a-tu { color: var(--arb-tu-dark, var(--arb-tu-light)); font-weight: var(--arb-tu-dark-weight, var(--arb-tu-light-weight, normal)); font-style: var(--arb-tu-dark-style, var(--arb-tu-light-style, normal)); text-decoration: var(--arb-tu-dark-decoration, var(--arb-tu-light-decoration, none)); }
50
+ a-tr { color: var(--arb-tr-dark, var(--arb-tr-light)); font-weight: var(--arb-tr-dark-weight, var(--arb-tr-light-weight, normal)); font-style: var(--arb-tr-dark-style, var(--arb-tr-light-style, normal)); text-decoration: var(--arb-tr-dark-decoration, var(--arb-tr-light-decoration, none)); }
51
+ a-se { color: var(--arb-se-dark, var(--arb-se-light)); font-weight: var(--arb-se-dark-weight, var(--arb-se-light-weight, normal)); font-style: var(--arb-se-dark-style, var(--arb-se-light-style, normal)); text-decoration: var(--arb-se-dark-decoration, var(--arb-se-light-decoration, none)); }
52
+ a-tt { color: var(--arb-tt-dark, var(--arb-tt-light)); font-weight: var(--arb-tt-dark-weight, var(--arb-tt-light-weight, normal)); font-style: var(--arb-tt-dark-style, var(--arb-tt-light-style, normal)); text-decoration: var(--arb-tt-dark-decoration, var(--arb-tt-light-decoration, none)); }
53
+ a-tx { color: var(--arb-tx-dark, var(--arb-tx-light)); font-weight: var(--arb-tx-dark-weight, var(--arb-tx-light-weight, normal)); font-style: var(--arb-tx-dark-style, var(--arb-tx-light-style, normal)); text-decoration: var(--arb-tx-dark-decoration, var(--arb-tx-light-decoration, none)); }
54
+ a-sp { color: var(--arb-sp-dark, var(--arb-sp-light)); font-weight: var(--arb-sp-dark-weight, var(--arb-sp-light-weight, normal)); font-style: var(--arb-sp-dark-style, var(--arb-sp-light-style, normal)); text-decoration: var(--arb-sp-dark-decoration, var(--arb-sp-light-decoration, none)); }
55
+ a-eb { color: var(--arb-eb-dark, var(--arb-eb-light)); font-weight: var(--arb-eb-dark-weight, var(--arb-eb-light-weight, normal)); font-style: var(--arb-eb-dark-style, var(--arb-eb-light-style, normal)); text-decoration: var(--arb-eb-dark-decoration, var(--arb-eb-light-decoration, none)); }
56
+ a-er { color: var(--arb-er-dark, var(--arb-er-light)); font-weight: var(--arb-er-dark-weight, var(--arb-er-light-weight, normal)); font-style: var(--arb-er-dark-style, var(--arb-er-light-style, normal)); text-decoration: var(--arb-er-dark-decoration, var(--arb-er-light-decoration, none)); }
57
+ a-ns { color: var(--arb-ns-dark, var(--arb-ns-light)); font-weight: var(--arb-ns-dark-weight, var(--arb-ns-light-weight, normal)); font-style: var(--arb-ns-dark-style, var(--arb-ns-light-style, normal)); text-decoration: var(--arb-ns-dark-decoration, var(--arb-ns-light-decoration, none)); }
58
+ a-in { color: var(--arb-in-dark, var(--arb-in-light)); font-weight: var(--arb-in-dark-weight, var(--arb-in-light-weight, normal)); font-style: var(--arb-in-dark-style, var(--arb-in-light-style, normal)); text-decoration: var(--arb-in-dark-decoration, var(--arb-in-light-decoration, none)); }
59
+ a-sc { color: var(--arb-sc-dark, var(--arb-sc-light)); font-weight: var(--arb-sc-dark-weight, var(--arb-sc-light-weight, normal)); font-style: var(--arb-sc-dark-style, var(--arb-sc-light-style, normal)); text-decoration: var(--arb-sc-dark-decoration, var(--arb-sc-light-decoration, none)); }
60
+ a-rp { color: var(--arb-rp-dark, var(--arb-rp-light)); font-weight: var(--arb-rp-dark-weight, var(--arb-rp-light-weight, normal)); font-style: var(--arb-rp-dark-style, var(--arb-rp-light-style, normal)); text-decoration: var(--arb-rp-dark-decoration, var(--arb-rp-light-decoration, none)); }
61
+ a-cn { color: var(--arb-cn-dark, var(--arb-cn-light)); font-weight: var(--arb-cn-dark-weight, var(--arb-cn-light-weight, normal)); font-style: var(--arb-cn-dark-style, var(--arb-cn-light-style, normal)); text-decoration: var(--arb-cn-dark-decoration, var(--arb-cn-light-decoration, none)); }
62
+ a-ex { color: var(--arb-ex-dark, var(--arb-ex-light)); font-weight: var(--arb-ex-dark-weight, var(--arb-ex-light-weight, normal)); font-style: var(--arb-ex-dark-style, var(--arb-ex-light-style, normal)); text-decoration: var(--arb-ex-dark-decoration, var(--arb-ex-light-decoration, none)); }
63
+ a-pp { color: var(--arb-pp-dark, var(--arb-pp-light)); font-weight: var(--arb-pp-dark-weight, var(--arb-pp-light-weight, normal)); font-style: var(--arb-pp-dark-style, var(--arb-pp-light-style, normal)); text-decoration: var(--arb-pp-dark-decoration, var(--arb-pp-light-decoration, none)); }
64
+ a-ch { color: var(--arb-ch-dark, var(--arb-ch-light)); font-weight: var(--arb-ch-dark-weight, var(--arb-ch-light-weight, normal)); font-style: var(--arb-ch-dark-style, var(--arb-ch-light-style, normal)); text-decoration: var(--arb-ch-dark-decoration, var(--arb-ch-light-decoration, none)); }
65
+ a-cs { color: var(--arb-cs-dark, var(--arb-cs-light)); font-weight: var(--arb-cs-dark-weight, var(--arb-cs-light-weight, normal)); font-style: var(--arb-cs-dark-style, var(--arb-cs-light-style, normal)); text-decoration: var(--arb-cs-dark-decoration, var(--arb-cs-light-decoration, none)); }
66
+ a-vm { color: var(--arb-vm-dark, var(--arb-vm-light)); font-weight: var(--arb-vm-dark-weight, var(--arb-vm-light-weight, normal)); font-style: var(--arb-vm-dark-style, var(--arb-vm-light-style, normal)); text-decoration: var(--arb-vm-dark-decoration, var(--arb-vm-light-decoration, none)); }
67
+ a-fd { color: var(--arb-fd-dark, var(--arb-fd-light)); font-weight: var(--arb-fd-dark-weight, var(--arb-fd-light-weight, normal)); font-style: var(--arb-fd-dark-style, var(--arb-fd-light-style, normal)); text-decoration: var(--arb-fd-dark-decoration, var(--arb-fd-light-decoration, none)); }
68
+ a-tf { color: var(--arb-tf-dark, var(--arb-tf-light)); font-weight: var(--arb-tf-dark-weight, var(--arb-tf-light-weight, normal)); font-style: var(--arb-tf-dark-style, var(--arb-tf-light-style, normal)); text-decoration: var(--arb-tf-dark-decoration, var(--arb-tf-light-decoration, none)); }
69
+ a-fc { color: var(--arb-fc-dark, var(--arb-fc-light)); font-weight: var(--arb-fc-dark-weight, var(--arb-fc-light-weight, normal)); font-style: var(--arb-fc-dark-style, var(--arb-fc-light-style, normal)); text-decoration: var(--arb-fc-dark-decoration, var(--arb-fc-light-decoration, none)); }
70
+ a-km { color: var(--arb-km-dark, var(--arb-km-light)); font-weight: var(--arb-km-dark-weight, var(--arb-km-light-weight, normal)); font-style: var(--arb-km-dark-style, var(--arb-km-light-style, normal)); text-decoration: var(--arb-km-dark-decoration, var(--arb-km-light-decoration, none)); }
71
+ a-dr { color: var(--arb-dr-dark, var(--arb-dr-light)); font-weight: var(--arb-dr-dark-weight, var(--arb-dr-light-weight, normal)); font-style: var(--arb-dr-dark-style, var(--arb-dr-light-style, normal)); text-decoration: var(--arb-dr-dark-decoration, var(--arb-dr-light-decoration, none)); }
72
+ a-rx { color: var(--arb-rx-dark, var(--arb-rx-light)); font-weight: var(--arb-rx-dark-weight, var(--arb-rx-light-weight, normal)); font-style: var(--arb-rx-dark-style, var(--arb-rx-light-style, normal)); text-decoration: var(--arb-rx-dark-decoration, var(--arb-rx-light-decoration, none)); }
@@ -71,8 +71,6 @@ a-fc { color: var(--arb-fc-light); font-weight: var(--arb-fc-light-weight, norma
71
71
  a-km { color: var(--arb-km-light); font-weight: var(--arb-km-light-weight, normal); font-style: var(--arb-km-light-style, normal); text-decoration: var(--arb-km-light-decoration, none); }
72
72
  a-dr { color: var(--arb-dr-light); font-weight: var(--arb-dr-light-weight, normal); font-style: var(--arb-dr-light-style, normal); text-decoration: var(--arb-dr-light-decoration, none); }
73
73
  a-rx { color: var(--arb-rx-light); font-weight: var(--arb-rx-light-weight, normal); font-style: var(--arb-rx-light-style, normal); text-decoration: var(--arb-rx-light-decoration, none); }
74
- a-n { color: var(--arb-n-light); font-weight: var(--arb-n-light-weight, normal); font-style: var(--arb-n-light-style, normal); text-decoration: var(--arb-n-light-decoration, none); }
75
- a-cb { color: var(--arb-cb-light); font-weight: var(--arb-cb-light-weight, normal); font-style: var(--arb-cb-light-style, normal); text-decoration: var(--arb-cb-light-decoration, none); }
76
74
 
77
75
  /* System preference: dark */
78
76
  @media (prefers-color-scheme: dark) {
@@ -145,8 +143,6 @@ a-cb { color: var(--arb-cb-light); font-weight: var(--arb-cb-light-weight, norma
145
143
  a-km { color: var(--arb-km-dark); font-weight: var(--arb-km-dark-weight, normal); font-style: var(--arb-km-dark-style, normal); text-decoration: var(--arb-km-dark-decoration, none); }
146
144
  a-dr { color: var(--arb-dr-dark); font-weight: var(--arb-dr-dark-weight, normal); font-style: var(--arb-dr-dark-style, normal); text-decoration: var(--arb-dr-dark-decoration, none); }
147
145
  a-rx { color: var(--arb-rx-dark); font-weight: var(--arb-rx-dark-weight, normal); font-style: var(--arb-rx-dark-style, normal); text-decoration: var(--arb-rx-dark-decoration, none); }
148
- a-n { color: var(--arb-n-dark); font-weight: var(--arb-n-dark-weight, normal); font-style: var(--arb-n-dark-style, normal); text-decoration: var(--arb-n-dark-decoration, none); }
149
- a-cb { color: var(--arb-cb-dark); font-weight: var(--arb-cb-dark-weight, normal); font-style: var(--arb-cb-dark-style, normal); text-decoration: var(--arb-cb-dark-decoration, none); }
150
146
  }
151
147
 
152
148
  /* Explicit light mode */
@@ -220,8 +216,6 @@ a-cb { color: var(--arb-cb-light); font-weight: var(--arb-cb-light-weight, norma
220
216
  a-km { color: var(--arb-km-light); font-weight: var(--arb-km-light-weight, normal); font-style: var(--arb-km-light-style, normal); text-decoration: var(--arb-km-light-decoration, none); }
221
217
  a-dr { color: var(--arb-dr-light); font-weight: var(--arb-dr-light-weight, normal); font-style: var(--arb-dr-light-style, normal); text-decoration: var(--arb-dr-light-decoration, none); }
222
218
  a-rx { color: var(--arb-rx-light); font-weight: var(--arb-rx-light-weight, normal); font-style: var(--arb-rx-light-style, normal); text-decoration: var(--arb-rx-light-decoration, none); }
223
- a-n { color: var(--arb-n-light); font-weight: var(--arb-n-light-weight, normal); font-style: var(--arb-n-light-style, normal); text-decoration: var(--arb-n-light-decoration, none); }
224
- a-cb { color: var(--arb-cb-light); font-weight: var(--arb-cb-light-weight, normal); font-style: var(--arb-cb-light-style, normal); text-decoration: var(--arb-cb-light-decoration, none); }
225
219
  }
226
220
 
227
221
  /* Explicit dark mode */
@@ -295,6 +289,4 @@ a-cb { color: var(--arb-cb-light); font-weight: var(--arb-cb-light-weight, norma
295
289
  a-km { color: var(--arb-km-dark); font-weight: var(--arb-km-dark-weight, normal); font-style: var(--arb-km-dark-style, normal); text-decoration: var(--arb-km-dark-decoration, none); }
296
290
  a-dr { color: var(--arb-dr-dark); font-weight: var(--arb-dr-dark-weight, normal); font-style: var(--arb-dr-dark-style, normal); text-decoration: var(--arb-dr-dark-decoration, none); }
297
291
  a-rx { color: var(--arb-rx-dark); font-weight: var(--arb-rx-dark-weight, normal); font-style: var(--arb-rx-dark-style, normal); text-decoration: var(--arb-rx-dark-decoration, none); }
298
- a-n { color: var(--arb-n-dark); font-weight: var(--arb-n-dark-weight, normal); font-style: var(--arb-n-dark-style, normal); text-decoration: var(--arb-n-dark-decoration, none); }
299
- a-cb { color: var(--arb-cb-dark); font-weight: var(--arb-cb-dark-weight, normal); font-style: var(--arb-cb-dark-style, normal); text-decoration: var(--arb-cb-dark-decoration, none); }
300
292
  }
@@ -1,4 +1,5 @@
1
1
  /* Catppuccin Frappé theme (dark) - generated from TOML */
2
+ /* Source: https://github.com/catppuccin/catppuccin */
2
3
  /* Defines --arb-*-dark variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Catppuccin Latte theme (light) - generated from TOML */
2
+ /* Source: https://github.com/catppuccin/catppuccin */
2
3
  /* Defines --arb-*-light variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Catppuccin Macchiato theme (dark) - generated from TOML */
2
+ /* Source: https://github.com/catppuccin/catppuccin */
2
3
  /* Defines --arb-*-dark variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Catppuccin Mocha theme (dark) - generated from TOML */
2
+ /* Source: https://github.com/catppuccin/catppuccin */
2
3
  /* Defines --arb-*-dark variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Cobalt2 theme (dark) - generated from TOML */
2
+ /* Source: https://github.com/wesbos/cobalt2-vscode */
2
3
  /* Defines --arb-*-dark variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Dayfox theme (light) - generated from TOML */
2
+ /* Source: https://github.com/EdenEast/nightfox.nvim */
2
3
  /* Defines --arb-*-light variables */
3
4
 
4
5
  :root {
@@ -1,4 +1,5 @@
1
1
  /* Desert256 theme (dark) - generated from TOML */
2
+ /* Source: https://github.com/vim-scripts/desert256.vim */
2
3
  /* Defines --arb-*-dark variables */
3
4
 
4
5
  :root {