@ox-content/theme-color-gruvbox 3.0.0-alpha.8 → 3.0.0-beta.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.
package/README.md CHANGED
@@ -34,6 +34,18 @@ import pixel from "@ox-content/theme-pixel";
34
34
  theme: [pixel, gruvbox, { colors: { primary: "#ff5f56" } }];
35
35
  ```
36
36
 
37
+ ## Variants
38
+
39
+ The default export stays `gruvbox` (Gruvbox light and dark, medium contrast). Named variants
40
+ are exported from the same package:
41
+
42
+ ```ts
43
+ import { gruvboxHard, gruvboxSoft } from "@ox-content/theme-color-gruvbox";
44
+ ```
45
+
46
+ - `gruvboxHard` — Gruvbox light and dark, hard contrast
47
+ - `gruvboxSoft` — Gruvbox light and dark, soft contrast
48
+
37
49
  ## License
38
50
 
39
51
  MIT
package/dist/index.cjs CHANGED
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- //#region src/index.ts
5
+ //#region src/gruvbox.ts
6
6
  /**
7
7
  * Gruvbox — Gruvbox light and dark, medium contrast.
8
8
  *
@@ -144,5 +144,291 @@ const gruvbox = {
144
144
  }
145
145
  };
146
146
  //#endregion
147
+ //#region src/gruvboxHard.ts
148
+ /**
149
+ * Gruvbox — Gruvbox light and dark, hard contrast.
150
+ *
151
+ * Color only: no layout, no texture, no typography. Compose it under any
152
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
153
+ *
154
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
155
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
156
+ */
157
+ const gruvboxHard = {
158
+ name: "gruvbox-hard",
159
+ colors: {
160
+ primary: "#076678",
161
+ primaryHover: "#3d7578",
162
+ background: "#f9f5d7",
163
+ backgroundAlt: "#f9f5d7",
164
+ text: "#3c3836",
165
+ textMuted: "#75695d",
166
+ border: "#ebdbb2",
167
+ codeBackground: "#f9f5d7",
168
+ codeBackgroundTop: "#f9f5d7",
169
+ codeText: "#3c3836"
170
+ },
171
+ darkColors: {
172
+ primary: "#83a598",
173
+ primaryHover: "#5b9496",
174
+ background: "#1d2021",
175
+ backgroundAlt: "#1d2021",
176
+ text: "#ebdbb2",
177
+ textMuted: "#96887a",
178
+ border: "#3c3836",
179
+ codeBackground: "#1d2021",
180
+ codeBackgroundTop: "#1d2021",
181
+ codeText: "#ebdbb2"
182
+ },
183
+ tokens: {
184
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
185
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
186
+ "color-code-line-warning-border": "#d79921",
187
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
188
+ "color-code-line-error-border": "#cc241d",
189
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
190
+ "color-code-line-add-border": "#98971a",
191
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
192
+ "color-code-line-remove-border": "#cc241d",
193
+ "color-code-line-focus": "color-mix(in srgb, #076678 16%, transparent)",
194
+ "color-code-line-dim": "0.45",
195
+ "color-code-title-bg": "color-mix(in srgb, #f9f5d7 92%, #3c3836)",
196
+ "color-code-title-text": "color-mix(in srgb, #3c3836 88%, #f9f5d7)",
197
+ "color-code-title-border": "color-mix(in srgb, #3c3836 22%, transparent)",
198
+ "color-code-line-number": "color-mix(in srgb, #3c3836 48%, transparent)",
199
+ "color-code-frame-border": "color-mix(in srgb, #ebdbb2 92%, transparent)",
200
+ "color-backdrop": "rgba(87, 86, 75, 0.62)",
201
+ "surface-glass": "color-mix(in srgb, #f9f5d7 62%, #f9f5d7)",
202
+ "surface-line": "color-mix(in srgb, #ebdbb2 72%, #f9f5d7)",
203
+ "brand-violet": "#b16286",
204
+ "brand-cyan": "#689d6a",
205
+ "brand-lime": "#98971a",
206
+ "brand-coral": "#cc241d",
207
+ "brand-navy": "color-mix(in srgb, #3c3836 70%, #f9f5d7)",
208
+ "brand-violet-rgb": "177, 98, 134",
209
+ "brand-cyan-rgb": "104, 157, 106",
210
+ "brand-lime-rgb": "152, 151, 26",
211
+ "brand-coral-rgb": "204, 36, 29",
212
+ "accent-a": "#076678",
213
+ "accent-b": "#b16286",
214
+ "accent-c": "#689d6a",
215
+ "accent-warm": "#d79921",
216
+ "accent-cool": "#458588",
217
+ "accent-a-ink": "#076678",
218
+ "accent-b-ink": "#9c5676",
219
+ "accent-c-ink": "#4f7751",
220
+ "accent-warm-ink": "#926816",
221
+ "accent-cool-ink": "#3d7578",
222
+ "accent-coral-ink": "#cc241d",
223
+ "syntax-foreground": "#3c3836",
224
+ "syntax-background": "#f9f5d7",
225
+ "syntax-token-comment": "#928374",
226
+ "syntax-token-punctuation": "#7c6f64",
227
+ "syntax-token-keyword": "#9d0006",
228
+ "syntax-token-string": "#79740e",
229
+ "syntax-token-string-expression": "#79740e",
230
+ "syntax-token-constant": "#8f3f71",
231
+ "syntax-token-function": "#b57614",
232
+ "syntax-token-parameter": "#076678",
233
+ "syntax-token-link": "#928374"
234
+ },
235
+ darkTokens: {
236
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
237
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
238
+ "color-code-line-warning-border": "#d79921",
239
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
240
+ "color-code-line-error-border": "#cc241d",
241
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
242
+ "color-code-line-add-border": "#98971a",
243
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
244
+ "color-code-line-remove-border": "#cc241d",
245
+ "color-code-line-focus": "color-mix(in srgb, #83a598 16%, transparent)",
246
+ "color-code-line-dim": "0.35",
247
+ "color-code-title-bg": "color-mix(in srgb, #1d2021 92%, #ebdbb2)",
248
+ "color-code-title-text": "color-mix(in srgb, #ebdbb2 88%, #1d2021)",
249
+ "color-code-title-border": "color-mix(in srgb, #ebdbb2 22%, transparent)",
250
+ "color-code-line-number": "color-mix(in srgb, #ebdbb2 48%, transparent)",
251
+ "color-code-frame-border": "color-mix(in srgb, #3c3836 92%, transparent)",
252
+ "color-backdrop": "rgba(10, 11, 12, 0.62)",
253
+ "surface-glass": "color-mix(in srgb, #1d2021 62%, #1d2021)",
254
+ "surface-line": "color-mix(in srgb, #3c3836 72%, #1d2021)",
255
+ "brand-violet": "#b16286",
256
+ "brand-cyan": "#689d6a",
257
+ "brand-lime": "#98971a",
258
+ "brand-coral": "#cc241d",
259
+ "brand-navy": "color-mix(in srgb, #ebdbb2 70%, #1d2021)",
260
+ "brand-violet-rgb": "177, 98, 134",
261
+ "brand-cyan-rgb": "104, 157, 106",
262
+ "brand-lime-rgb": "152, 151, 26",
263
+ "brand-coral-rgb": "204, 36, 29",
264
+ "accent-a": "#83a598",
265
+ "accent-b": "#b16286",
266
+ "accent-c": "#689d6a",
267
+ "accent-warm": "#d79921",
268
+ "accent-cool": "#458588",
269
+ "accent-a-ink": "#83a598",
270
+ "accent-b-ink": "#ba7595",
271
+ "accent-c-ink": "#689d6a",
272
+ "accent-warm-ink": "#d79921",
273
+ "accent-cool-ink": "#5b9496",
274
+ "accent-coral-ink": "#da615c",
275
+ "syntax-foreground": "#ebdbb2",
276
+ "syntax-background": "#1d2021",
277
+ "syntax-token-comment": "#928374",
278
+ "syntax-token-punctuation": "#a89984",
279
+ "syntax-token-keyword": "#fb4934",
280
+ "syntax-token-string": "#b8bb26",
281
+ "syntax-token-string-expression": "#b8bb26",
282
+ "syntax-token-constant": "#d3869b",
283
+ "syntax-token-function": "#fabd2f",
284
+ "syntax-token-parameter": "#83a598",
285
+ "syntax-token-link": "#928374"
286
+ }
287
+ };
288
+ //#endregion
289
+ //#region src/gruvboxSoft.ts
290
+ /**
291
+ * Gruvbox — Gruvbox light and dark, soft contrast.
292
+ *
293
+ * Color only: no layout, no texture, no typography. Compose it under any
294
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
295
+ *
296
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
297
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
298
+ */
299
+ const gruvboxSoft = {
300
+ name: "gruvbox-soft",
301
+ colors: {
302
+ primary: "#076678",
303
+ primaryHover: "#376a6d",
304
+ background: "#f2e5bc",
305
+ backgroundAlt: "#f2e5bc",
306
+ text: "#3c3836",
307
+ textMuted: "#6f6458",
308
+ border: "#ebdbb2",
309
+ codeBackground: "#f2e5bc",
310
+ codeBackgroundTop: "#f2e5bc",
311
+ codeText: "#3c3836"
312
+ },
313
+ darkColors: {
314
+ primary: "#83a598",
315
+ primaryHover: "#72a2a5",
316
+ background: "#32302f",
317
+ backgroundAlt: "#32302f",
318
+ text: "#ebdbb2",
319
+ textMuted: "#a3978a",
320
+ border: "#3c3836",
321
+ codeBackground: "#32302f",
322
+ codeBackgroundTop: "#32302f",
323
+ codeText: "#ebdbb2"
324
+ },
325
+ tokens: {
326
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
327
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
328
+ "color-code-line-warning-border": "#d79921",
329
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
330
+ "color-code-line-error-border": "#cc241d",
331
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
332
+ "color-code-line-add-border": "#98971a",
333
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
334
+ "color-code-line-remove-border": "#cc241d",
335
+ "color-code-line-focus": "color-mix(in srgb, #076678 16%, transparent)",
336
+ "color-code-line-dim": "0.45",
337
+ "color-code-title-bg": "color-mix(in srgb, #f2e5bc 92%, #3c3836)",
338
+ "color-code-title-text": "color-mix(in srgb, #3c3836 88%, #f2e5bc)",
339
+ "color-code-title-border": "color-mix(in srgb, #3c3836 22%, transparent)",
340
+ "color-code-line-number": "color-mix(in srgb, #3c3836 48%, transparent)",
341
+ "color-code-frame-border": "color-mix(in srgb, #ebdbb2 92%, transparent)",
342
+ "color-backdrop": "rgba(85, 80, 66, 0.62)",
343
+ "surface-glass": "color-mix(in srgb, #f2e5bc 62%, #f2e5bc)",
344
+ "surface-line": "color-mix(in srgb, #ebdbb2 72%, #f2e5bc)",
345
+ "brand-violet": "#b16286",
346
+ "brand-cyan": "#689d6a",
347
+ "brand-lime": "#98971a",
348
+ "brand-coral": "#cc241d",
349
+ "brand-navy": "color-mix(in srgb, #3c3836 70%, #f2e5bc)",
350
+ "brand-violet-rgb": "177, 98, 134",
351
+ "brand-cyan-rgb": "104, 157, 106",
352
+ "brand-lime-rgb": "152, 151, 26",
353
+ "brand-coral-rgb": "204, 36, 29",
354
+ "accent-a": "#076678",
355
+ "accent-b": "#b16286",
356
+ "accent-c": "#689d6a",
357
+ "accent-warm": "#d79921",
358
+ "accent-cool": "#458588",
359
+ "accent-a-ink": "#076678",
360
+ "accent-b-ink": "#8e4e6b",
361
+ "accent-c-ink": "#476b48",
362
+ "accent-warm-ink": "#815c14",
363
+ "accent-cool-ink": "#376a6d",
364
+ "accent-coral-ink": "#c4231c",
365
+ "syntax-foreground": "#3c3836",
366
+ "syntax-background": "#f2e5bc",
367
+ "syntax-token-comment": "#928374",
368
+ "syntax-token-punctuation": "#7c6f64",
369
+ "syntax-token-keyword": "#9d0006",
370
+ "syntax-token-string": "#79740e",
371
+ "syntax-token-string-expression": "#79740e",
372
+ "syntax-token-constant": "#8f3f71",
373
+ "syntax-token-function": "#b57614",
374
+ "syntax-token-parameter": "#076678",
375
+ "syntax-token-link": "#928374"
376
+ },
377
+ darkTokens: {
378
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
379
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
380
+ "color-code-line-warning-border": "#d79921",
381
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
382
+ "color-code-line-error-border": "#cc241d",
383
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
384
+ "color-code-line-add-border": "#98971a",
385
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
386
+ "color-code-line-remove-border": "#cc241d",
387
+ "color-code-line-focus": "color-mix(in srgb, #83a598 16%, transparent)",
388
+ "color-code-line-dim": "0.35",
389
+ "color-code-title-bg": "color-mix(in srgb, #32302f 92%, #ebdbb2)",
390
+ "color-code-title-text": "color-mix(in srgb, #ebdbb2 88%, #32302f)",
391
+ "color-code-title-border": "color-mix(in srgb, #ebdbb2 22%, transparent)",
392
+ "color-code-line-number": "color-mix(in srgb, #ebdbb2 48%, transparent)",
393
+ "color-code-frame-border": "color-mix(in srgb, #3c3836 92%, transparent)",
394
+ "color-backdrop": "rgba(18, 17, 16, 0.62)",
395
+ "surface-glass": "color-mix(in srgb, #32302f 62%, #32302f)",
396
+ "surface-line": "color-mix(in srgb, #3c3836 72%, #32302f)",
397
+ "brand-violet": "#b16286",
398
+ "brand-cyan": "#689d6a",
399
+ "brand-lime": "#98971a",
400
+ "brand-coral": "#cc241d",
401
+ "brand-navy": "color-mix(in srgb, #ebdbb2 70%, #32302f)",
402
+ "brand-violet-rgb": "177, 98, 134",
403
+ "brand-cyan-rgb": "104, 157, 106",
404
+ "brand-lime-rgb": "152, 151, 26",
405
+ "brand-coral-rgb": "204, 36, 29",
406
+ "accent-a": "#83a598",
407
+ "accent-b": "#b16286",
408
+ "accent-c": "#689d6a",
409
+ "accent-warm": "#d79921",
410
+ "accent-cool": "#458588",
411
+ "accent-a-ink": "#83a598",
412
+ "accent-b-ink": "#c488a3",
413
+ "accent-c-ink": "#74a576",
414
+ "accent-warm-ink": "#d79921",
415
+ "accent-cool-ink": "#72a2a5",
416
+ "accent-coral-ink": "#e07c77",
417
+ "syntax-foreground": "#ebdbb2",
418
+ "syntax-background": "#32302f",
419
+ "syntax-token-comment": "#928374",
420
+ "syntax-token-punctuation": "#a89984",
421
+ "syntax-token-keyword": "#fb4934",
422
+ "syntax-token-string": "#b8bb26",
423
+ "syntax-token-string-expression": "#b8bb26",
424
+ "syntax-token-constant": "#d3869b",
425
+ "syntax-token-function": "#fabd2f",
426
+ "syntax-token-parameter": "#83a598",
427
+ "syntax-token-link": "#928374"
428
+ }
429
+ };
430
+ //#endregion
147
431
  exports.default = gruvbox;
148
432
  exports.gruvbox = gruvbox;
433
+ exports.gruvboxHard = gruvboxHard;
434
+ exports.gruvboxSoft = gruvboxSoft;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ThemeConfig } from "@ox-content/vite-plugin";
2
- //#region src/index.d.ts
2
+ //#region src/gruvbox.d.ts
3
3
  /**
4
4
  * Gruvbox — Gruvbox light and dark, medium contrast.
5
5
  *
@@ -11,5 +11,29 @@ import { ThemeConfig } from "@ox-content/vite-plugin";
11
11
  */
12
12
  declare const gruvbox: ThemeConfig;
13
13
  //#endregion
14
- export { gruvbox as default, gruvbox };
14
+ //#region src/gruvboxHard.d.ts
15
+ /**
16
+ * Gruvbox — Gruvbox light and dark, hard contrast.
17
+ *
18
+ * Color only: no layout, no texture, no typography. Compose it under any
19
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
20
+ *
21
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
22
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
23
+ */
24
+ declare const gruvboxHard: ThemeConfig;
25
+ //#endregion
26
+ //#region src/gruvboxSoft.d.ts
27
+ /**
28
+ * Gruvbox — Gruvbox light and dark, soft contrast.
29
+ *
30
+ * Color only: no layout, no texture, no typography. Compose it under any
31
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
32
+ *
33
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
34
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
35
+ */
36
+ declare const gruvboxSoft: ThemeConfig;
37
+ //#endregion
38
+ export { gruvbox as default, gruvbox, gruvboxHard, gruvboxSoft };
15
39
  //# sourceMappingURL=index.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/gruvbox.ts","../src/gruvboxHard.ts","../src/gruvboxSoft.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS;;;;;;;;;;;;cCAT,aAAa;;;;;;;;;;;;cCAb,aAAa"}
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ThemeConfig } from "@ox-content/vite-plugin";
2
- //#region src/index.d.ts
2
+ //#region src/gruvbox.d.ts
3
3
  /**
4
4
  * Gruvbox — Gruvbox light and dark, medium contrast.
5
5
  *
@@ -11,5 +11,29 @@ import { ThemeConfig } from "@ox-content/vite-plugin";
11
11
  */
12
12
  declare const gruvbox: ThemeConfig;
13
13
  //#endregion
14
- export { gruvbox as default, gruvbox };
14
+ //#region src/gruvboxHard.d.ts
15
+ /**
16
+ * Gruvbox — Gruvbox light and dark, hard contrast.
17
+ *
18
+ * Color only: no layout, no texture, no typography. Compose it under any
19
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
20
+ *
21
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
22
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
23
+ */
24
+ declare const gruvboxHard: ThemeConfig;
25
+ //#endregion
26
+ //#region src/gruvboxSoft.d.ts
27
+ /**
28
+ * Gruvbox — Gruvbox light and dark, soft contrast.
29
+ *
30
+ * Color only: no layout, no texture, no typography. Compose it under any
31
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
32
+ *
33
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
34
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
35
+ */
36
+ declare const gruvboxSoft: ThemeConfig;
37
+ //#endregion
38
+ export { gruvbox as default, gruvbox, gruvboxHard, gruvboxSoft };
15
39
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/gruvbox.ts","../src/gruvboxHard.ts","../src/gruvboxSoft.ts"],"mappings":";;;;;;;;;;;cAWa,SAAS;;;;;;;;;;;;cCAT,aAAa;;;;;;;;;;;;cCAb,aAAa"}
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- //#region src/index.ts
1
+ //#region src/gruvbox.ts
2
2
  /**
3
3
  * Gruvbox — Gruvbox light and dark, medium contrast.
4
4
  *
@@ -140,6 +140,290 @@ const gruvbox = {
140
140
  }
141
141
  };
142
142
  //#endregion
143
- export { gruvbox as default, gruvbox };
143
+ //#region src/gruvboxHard.ts
144
+ /**
145
+ * Gruvbox — Gruvbox light and dark, hard contrast.
146
+ *
147
+ * Color only: no layout, no texture, no typography. Compose it under any
148
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
149
+ *
150
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
151
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
152
+ */
153
+ const gruvboxHard = {
154
+ name: "gruvbox-hard",
155
+ colors: {
156
+ primary: "#076678",
157
+ primaryHover: "#3d7578",
158
+ background: "#f9f5d7",
159
+ backgroundAlt: "#f9f5d7",
160
+ text: "#3c3836",
161
+ textMuted: "#75695d",
162
+ border: "#ebdbb2",
163
+ codeBackground: "#f9f5d7",
164
+ codeBackgroundTop: "#f9f5d7",
165
+ codeText: "#3c3836"
166
+ },
167
+ darkColors: {
168
+ primary: "#83a598",
169
+ primaryHover: "#5b9496",
170
+ background: "#1d2021",
171
+ backgroundAlt: "#1d2021",
172
+ text: "#ebdbb2",
173
+ textMuted: "#96887a",
174
+ border: "#3c3836",
175
+ codeBackground: "#1d2021",
176
+ codeBackgroundTop: "#1d2021",
177
+ codeText: "#ebdbb2"
178
+ },
179
+ tokens: {
180
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
181
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
182
+ "color-code-line-warning-border": "#d79921",
183
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
184
+ "color-code-line-error-border": "#cc241d",
185
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
186
+ "color-code-line-add-border": "#98971a",
187
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
188
+ "color-code-line-remove-border": "#cc241d",
189
+ "color-code-line-focus": "color-mix(in srgb, #076678 16%, transparent)",
190
+ "color-code-line-dim": "0.45",
191
+ "color-code-title-bg": "color-mix(in srgb, #f9f5d7 92%, #3c3836)",
192
+ "color-code-title-text": "color-mix(in srgb, #3c3836 88%, #f9f5d7)",
193
+ "color-code-title-border": "color-mix(in srgb, #3c3836 22%, transparent)",
194
+ "color-code-line-number": "color-mix(in srgb, #3c3836 48%, transparent)",
195
+ "color-code-frame-border": "color-mix(in srgb, #ebdbb2 92%, transparent)",
196
+ "color-backdrop": "rgba(87, 86, 75, 0.62)",
197
+ "surface-glass": "color-mix(in srgb, #f9f5d7 62%, #f9f5d7)",
198
+ "surface-line": "color-mix(in srgb, #ebdbb2 72%, #f9f5d7)",
199
+ "brand-violet": "#b16286",
200
+ "brand-cyan": "#689d6a",
201
+ "brand-lime": "#98971a",
202
+ "brand-coral": "#cc241d",
203
+ "brand-navy": "color-mix(in srgb, #3c3836 70%, #f9f5d7)",
204
+ "brand-violet-rgb": "177, 98, 134",
205
+ "brand-cyan-rgb": "104, 157, 106",
206
+ "brand-lime-rgb": "152, 151, 26",
207
+ "brand-coral-rgb": "204, 36, 29",
208
+ "accent-a": "#076678",
209
+ "accent-b": "#b16286",
210
+ "accent-c": "#689d6a",
211
+ "accent-warm": "#d79921",
212
+ "accent-cool": "#458588",
213
+ "accent-a-ink": "#076678",
214
+ "accent-b-ink": "#9c5676",
215
+ "accent-c-ink": "#4f7751",
216
+ "accent-warm-ink": "#926816",
217
+ "accent-cool-ink": "#3d7578",
218
+ "accent-coral-ink": "#cc241d",
219
+ "syntax-foreground": "#3c3836",
220
+ "syntax-background": "#f9f5d7",
221
+ "syntax-token-comment": "#928374",
222
+ "syntax-token-punctuation": "#7c6f64",
223
+ "syntax-token-keyword": "#9d0006",
224
+ "syntax-token-string": "#79740e",
225
+ "syntax-token-string-expression": "#79740e",
226
+ "syntax-token-constant": "#8f3f71",
227
+ "syntax-token-function": "#b57614",
228
+ "syntax-token-parameter": "#076678",
229
+ "syntax-token-link": "#928374"
230
+ },
231
+ darkTokens: {
232
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
233
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
234
+ "color-code-line-warning-border": "#d79921",
235
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
236
+ "color-code-line-error-border": "#cc241d",
237
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
238
+ "color-code-line-add-border": "#98971a",
239
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
240
+ "color-code-line-remove-border": "#cc241d",
241
+ "color-code-line-focus": "color-mix(in srgb, #83a598 16%, transparent)",
242
+ "color-code-line-dim": "0.35",
243
+ "color-code-title-bg": "color-mix(in srgb, #1d2021 92%, #ebdbb2)",
244
+ "color-code-title-text": "color-mix(in srgb, #ebdbb2 88%, #1d2021)",
245
+ "color-code-title-border": "color-mix(in srgb, #ebdbb2 22%, transparent)",
246
+ "color-code-line-number": "color-mix(in srgb, #ebdbb2 48%, transparent)",
247
+ "color-code-frame-border": "color-mix(in srgb, #3c3836 92%, transparent)",
248
+ "color-backdrop": "rgba(10, 11, 12, 0.62)",
249
+ "surface-glass": "color-mix(in srgb, #1d2021 62%, #1d2021)",
250
+ "surface-line": "color-mix(in srgb, #3c3836 72%, #1d2021)",
251
+ "brand-violet": "#b16286",
252
+ "brand-cyan": "#689d6a",
253
+ "brand-lime": "#98971a",
254
+ "brand-coral": "#cc241d",
255
+ "brand-navy": "color-mix(in srgb, #ebdbb2 70%, #1d2021)",
256
+ "brand-violet-rgb": "177, 98, 134",
257
+ "brand-cyan-rgb": "104, 157, 106",
258
+ "brand-lime-rgb": "152, 151, 26",
259
+ "brand-coral-rgb": "204, 36, 29",
260
+ "accent-a": "#83a598",
261
+ "accent-b": "#b16286",
262
+ "accent-c": "#689d6a",
263
+ "accent-warm": "#d79921",
264
+ "accent-cool": "#458588",
265
+ "accent-a-ink": "#83a598",
266
+ "accent-b-ink": "#ba7595",
267
+ "accent-c-ink": "#689d6a",
268
+ "accent-warm-ink": "#d79921",
269
+ "accent-cool-ink": "#5b9496",
270
+ "accent-coral-ink": "#da615c",
271
+ "syntax-foreground": "#ebdbb2",
272
+ "syntax-background": "#1d2021",
273
+ "syntax-token-comment": "#928374",
274
+ "syntax-token-punctuation": "#a89984",
275
+ "syntax-token-keyword": "#fb4934",
276
+ "syntax-token-string": "#b8bb26",
277
+ "syntax-token-string-expression": "#b8bb26",
278
+ "syntax-token-constant": "#d3869b",
279
+ "syntax-token-function": "#fabd2f",
280
+ "syntax-token-parameter": "#83a598",
281
+ "syntax-token-link": "#928374"
282
+ }
283
+ };
284
+ //#endregion
285
+ //#region src/gruvboxSoft.ts
286
+ /**
287
+ * Gruvbox — Gruvbox light and dark, soft contrast.
288
+ *
289
+ * Color only: no layout, no texture, no typography. Compose it under any
290
+ * `@ox-content/theme-*` skin, or use it on its own over the default theme.
291
+ *
292
+ * Generated from `scripts/theme-colors/palettes.json`; edit that file and run
293
+ * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.
294
+ */
295
+ const gruvboxSoft = {
296
+ name: "gruvbox-soft",
297
+ colors: {
298
+ primary: "#076678",
299
+ primaryHover: "#376a6d",
300
+ background: "#f2e5bc",
301
+ backgroundAlt: "#f2e5bc",
302
+ text: "#3c3836",
303
+ textMuted: "#6f6458",
304
+ border: "#ebdbb2",
305
+ codeBackground: "#f2e5bc",
306
+ codeBackgroundTop: "#f2e5bc",
307
+ codeText: "#3c3836"
308
+ },
309
+ darkColors: {
310
+ primary: "#83a598",
311
+ primaryHover: "#72a2a5",
312
+ background: "#32302f",
313
+ backgroundAlt: "#32302f",
314
+ text: "#ebdbb2",
315
+ textMuted: "#a3978a",
316
+ border: "#3c3836",
317
+ codeBackground: "#32302f",
318
+ codeBackgroundTop: "#32302f",
319
+ codeText: "#ebdbb2"
320
+ },
321
+ tokens: {
322
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
323
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
324
+ "color-code-line-warning-border": "#d79921",
325
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
326
+ "color-code-line-error-border": "#cc241d",
327
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
328
+ "color-code-line-add-border": "#98971a",
329
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
330
+ "color-code-line-remove-border": "#cc241d",
331
+ "color-code-line-focus": "color-mix(in srgb, #076678 16%, transparent)",
332
+ "color-code-line-dim": "0.45",
333
+ "color-code-title-bg": "color-mix(in srgb, #f2e5bc 92%, #3c3836)",
334
+ "color-code-title-text": "color-mix(in srgb, #3c3836 88%, #f2e5bc)",
335
+ "color-code-title-border": "color-mix(in srgb, #3c3836 22%, transparent)",
336
+ "color-code-line-number": "color-mix(in srgb, #3c3836 48%, transparent)",
337
+ "color-code-frame-border": "color-mix(in srgb, #ebdbb2 92%, transparent)",
338
+ "color-backdrop": "rgba(85, 80, 66, 0.62)",
339
+ "surface-glass": "color-mix(in srgb, #f2e5bc 62%, #f2e5bc)",
340
+ "surface-line": "color-mix(in srgb, #ebdbb2 72%, #f2e5bc)",
341
+ "brand-violet": "#b16286",
342
+ "brand-cyan": "#689d6a",
343
+ "brand-lime": "#98971a",
344
+ "brand-coral": "#cc241d",
345
+ "brand-navy": "color-mix(in srgb, #3c3836 70%, #f2e5bc)",
346
+ "brand-violet-rgb": "177, 98, 134",
347
+ "brand-cyan-rgb": "104, 157, 106",
348
+ "brand-lime-rgb": "152, 151, 26",
349
+ "brand-coral-rgb": "204, 36, 29",
350
+ "accent-a": "#076678",
351
+ "accent-b": "#b16286",
352
+ "accent-c": "#689d6a",
353
+ "accent-warm": "#d79921",
354
+ "accent-cool": "#458588",
355
+ "accent-a-ink": "#076678",
356
+ "accent-b-ink": "#8e4e6b",
357
+ "accent-c-ink": "#476b48",
358
+ "accent-warm-ink": "#815c14",
359
+ "accent-cool-ink": "#376a6d",
360
+ "accent-coral-ink": "#c4231c",
361
+ "syntax-foreground": "#3c3836",
362
+ "syntax-background": "#f2e5bc",
363
+ "syntax-token-comment": "#928374",
364
+ "syntax-token-punctuation": "#7c6f64",
365
+ "syntax-token-keyword": "#9d0006",
366
+ "syntax-token-string": "#79740e",
367
+ "syntax-token-string-expression": "#79740e",
368
+ "syntax-token-constant": "#8f3f71",
369
+ "syntax-token-function": "#b57614",
370
+ "syntax-token-parameter": "#076678",
371
+ "syntax-token-link": "#928374"
372
+ },
373
+ darkTokens: {
374
+ "color-code-line-highlight": "color-mix(in srgb, #458588 16%, transparent)",
375
+ "color-code-line-warning": "color-mix(in srgb, #d79921 18%, transparent)",
376
+ "color-code-line-warning-border": "#d79921",
377
+ "color-code-line-error": "color-mix(in srgb, #cc241d 20%, transparent)",
378
+ "color-code-line-error-border": "#cc241d",
379
+ "color-code-line-add": "color-mix(in srgb, #98971a 16%, transparent)",
380
+ "color-code-line-add-border": "#98971a",
381
+ "color-code-line-remove": "color-mix(in srgb, #cc241d 14%, transparent)",
382
+ "color-code-line-remove-border": "#cc241d",
383
+ "color-code-line-focus": "color-mix(in srgb, #83a598 16%, transparent)",
384
+ "color-code-line-dim": "0.35",
385
+ "color-code-title-bg": "color-mix(in srgb, #32302f 92%, #ebdbb2)",
386
+ "color-code-title-text": "color-mix(in srgb, #ebdbb2 88%, #32302f)",
387
+ "color-code-title-border": "color-mix(in srgb, #ebdbb2 22%, transparent)",
388
+ "color-code-line-number": "color-mix(in srgb, #ebdbb2 48%, transparent)",
389
+ "color-code-frame-border": "color-mix(in srgb, #3c3836 92%, transparent)",
390
+ "color-backdrop": "rgba(18, 17, 16, 0.62)",
391
+ "surface-glass": "color-mix(in srgb, #32302f 62%, #32302f)",
392
+ "surface-line": "color-mix(in srgb, #3c3836 72%, #32302f)",
393
+ "brand-violet": "#b16286",
394
+ "brand-cyan": "#689d6a",
395
+ "brand-lime": "#98971a",
396
+ "brand-coral": "#cc241d",
397
+ "brand-navy": "color-mix(in srgb, #ebdbb2 70%, #32302f)",
398
+ "brand-violet-rgb": "177, 98, 134",
399
+ "brand-cyan-rgb": "104, 157, 106",
400
+ "brand-lime-rgb": "152, 151, 26",
401
+ "brand-coral-rgb": "204, 36, 29",
402
+ "accent-a": "#83a598",
403
+ "accent-b": "#b16286",
404
+ "accent-c": "#689d6a",
405
+ "accent-warm": "#d79921",
406
+ "accent-cool": "#458588",
407
+ "accent-a-ink": "#83a598",
408
+ "accent-b-ink": "#c488a3",
409
+ "accent-c-ink": "#74a576",
410
+ "accent-warm-ink": "#d79921",
411
+ "accent-cool-ink": "#72a2a5",
412
+ "accent-coral-ink": "#e07c77",
413
+ "syntax-foreground": "#ebdbb2",
414
+ "syntax-background": "#32302f",
415
+ "syntax-token-comment": "#928374",
416
+ "syntax-token-punctuation": "#a89984",
417
+ "syntax-token-keyword": "#fb4934",
418
+ "syntax-token-string": "#b8bb26",
419
+ "syntax-token-string-expression": "#b8bb26",
420
+ "syntax-token-constant": "#d3869b",
421
+ "syntax-token-function": "#fabd2f",
422
+ "syntax-token-parameter": "#83a598",
423
+ "syntax-token-link": "#928374"
424
+ }
425
+ };
426
+ //#endregion
427
+ export { gruvbox as default, gruvbox, gruvboxHard, gruvboxSoft };
144
428
 
145
429
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Gruvbox — Gruvbox light and dark, medium contrast.\n *\n * Color only: no layout, no texture, no typography. Compose it under any\n * `@ox-content/theme-*` skin, or use it on its own over the default theme.\n *\n * Generated from `scripts/theme-colors/palettes.json`; edit that file and run\n * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.\n */\nexport const gruvbox: ThemeConfig = {\n name: \"gruvbox\",\n colors: {\n primary: \"#af3a03\",\n primaryHover: \"#8f2f02\",\n background: \"#fbf1c7\",\n backgroundAlt: \"#f2e5bc\",\n text: \"#3c3836\",\n textMuted: \"#665c54\",\n border: \"#d5c4a1\",\n codeBackground: \"#f2e5bc\",\n codeBackgroundTop: \"#f2e5bc\",\n codeText: \"#3c3836\",\n },\n darkColors: {\n primary: \"#fe8019\",\n primaryHover: \"#fea86a\",\n background: \"#282828\",\n backgroundAlt: \"#32302f\",\n text: \"#ebdbb2\",\n textMuted: \"#a89984\",\n border: \"#504945\",\n codeBackground: \"#1d2021\",\n codeBackgroundTop: \"#1d2021\",\n codeText: \"#ebdbb2\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #076678 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #b57614 18%, transparent)\",\n \"color-code-line-warning-border\": \"#b57614\",\n \"color-code-line-error\": \"color-mix(in srgb, #9d0006 20%, transparent)\",\n \"color-code-line-error-border\": \"#9d0006\",\n \"color-code-line-add\": \"color-mix(in srgb, #79740e 16%, transparent)\",\n \"color-code-line-add-border\": \"#79740e\",\n \"color-code-line-remove\": \"color-mix(in srgb, #9d0006 14%, transparent)\",\n \"color-code-line-remove-border\": \"#9d0006\",\n \"color-code-line-focus\": \"color-mix(in srgb, #af3a03 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f2e5bc 92%, #3c3836)\",\n \"color-code-title-text\": \"color-mix(in srgb, #3c3836 88%, #f2e5bc)\",\n \"color-code-title-border\": \"color-mix(in srgb, #3c3836 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #3c3836 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #d5c4a1 92%, transparent)\",\n \"color-backdrop\": \"rgba(88, 84, 70, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f2e5bc 62%, #fbf1c7)\",\n \"surface-line\": \"color-mix(in srgb, #d5c4a1 72%, #fbf1c7)\",\n \"brand-violet\": \"#8f3f71\",\n \"brand-cyan\": \"#427b58\",\n \"brand-lime\": \"#79740e\",\n \"brand-coral\": \"#9d0006\",\n \"brand-navy\": \"color-mix(in srgb, #3c3836 70%, #fbf1c7)\",\n \"brand-violet-rgb\": \"143, 63, 113\",\n \"brand-cyan-rgb\": \"66, 123, 88\",\n \"brand-lime-rgb\": \"121, 116, 14\",\n \"brand-coral-rgb\": \"157, 0, 6\",\n \"accent-a\": \"#af3a03\",\n \"accent-b\": \"#8f3f71\",\n \"accent-c\": \"#427b58\",\n \"accent-warm\": \"#b57614\",\n \"accent-cool\": \"#076678\",\n \"accent-a-ink\": \"#af3a03\",\n \"accent-b-ink\": \"#8f3f71\",\n \"accent-c-ink\": \"#3f7654\",\n \"accent-warm-ink\": \"#915e10\",\n \"accent-cool-ink\": \"#076678\",\n \"accent-coral-ink\": \"#9d0006\",\n \"syntax-foreground\": \"#3c3836\",\n \"syntax-background\": \"#f2e5bc\",\n \"syntax-token-comment\": \"color-mix(in srgb, #3c3836 55%, #f2e5bc)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #3c3836 72%, #f2e5bc)\",\n \"syntax-token-keyword\": \"#8f3f71\",\n \"syntax-token-string\": \"#79740e\",\n \"syntax-token-string-expression\": \"#79740e\",\n \"syntax-token-constant\": \"#b57614\",\n \"syntax-token-function\": \"#076678\",\n \"syntax-token-parameter\": \"#9d0006\",\n \"syntax-token-link\": \"#427b58\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #83a598 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #fabd2f 18%, transparent)\",\n \"color-code-line-warning-border\": \"#fabd2f\",\n \"color-code-line-error\": \"color-mix(in srgb, #fb4934 20%, transparent)\",\n \"color-code-line-error-border\": \"#fb4934\",\n \"color-code-line-add\": \"color-mix(in srgb, #b8bb26 16%, transparent)\",\n \"color-code-line-add-border\": \"#b8bb26\",\n \"color-code-line-remove\": \"color-mix(in srgb, #fb4934 14%, transparent)\",\n \"color-code-line-remove-border\": \"#fb4934\",\n \"color-code-line-focus\": \"color-mix(in srgb, #fe8019 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #1d2021 92%, #ebdbb2)\",\n \"color-code-title-text\": \"color-mix(in srgb, #ebdbb2 88%, #1d2021)\",\n \"color-code-title-border\": \"color-mix(in srgb, #ebdbb2 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #ebdbb2 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #504945 92%, transparent)\",\n \"color-backdrop\": \"rgba(14, 14, 14, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #32302f 62%, #282828)\",\n \"surface-line\": \"color-mix(in srgb, #504945 72%, #282828)\",\n \"brand-violet\": \"#d3869b\",\n \"brand-cyan\": \"#8ec07c\",\n \"brand-lime\": \"#b8bb26\",\n \"brand-coral\": \"#fb4934\",\n \"brand-navy\": \"color-mix(in srgb, #ebdbb2 70%, #282828)\",\n \"brand-violet-rgb\": \"211, 134, 155\",\n \"brand-cyan-rgb\": \"142, 192, 124\",\n \"brand-lime-rgb\": \"184, 187, 38\",\n \"brand-coral-rgb\": \"251, 73, 52\",\n \"accent-a\": \"#fe8019\",\n \"accent-b\": \"#d3869b\",\n \"accent-c\": \"#8ec07c\",\n \"accent-warm\": \"#fabd2f\",\n \"accent-cool\": \"#83a598\",\n \"accent-a-ink\": \"#fe8019\",\n \"accent-b-ink\": \"#d3869b\",\n \"accent-c-ink\": \"#8ec07c\",\n \"accent-warm-ink\": \"#fabd2f\",\n \"accent-cool-ink\": \"#83a598\",\n \"accent-coral-ink\": \"#fb5844\",\n \"syntax-foreground\": \"#ebdbb2\",\n \"syntax-background\": \"#1d2021\",\n \"syntax-token-comment\": \"color-mix(in srgb, #ebdbb2 55%, #1d2021)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #ebdbb2 72%, #1d2021)\",\n \"syntax-token-keyword\": \"#d3869b\",\n \"syntax-token-string\": \"#b8bb26\",\n \"syntax-token-string-expression\": \"#b8bb26\",\n \"syntax-token-constant\": \"#fabd2f\",\n \"syntax-token-function\": \"#83a598\",\n \"syntax-token-parameter\": \"#fb4934\",\n \"syntax-token-link\": \"#8ec07c\",\n },\n};\n\nexport default gruvbox;\n"],"mappings":";;;;;;;;;;AAWA,MAAa,UAAuB;CAClC,MAAM;CACN,QAAQ;EACN,SAAS;EACT,cAAc;EACd,YAAY;EACZ,eAAe;EACf,MAAM;EACN,WAAW;EACX,QAAQ;EACR,gBAAgB;EAChB,mBAAmB;EACnB,UAAU;CACZ;CACA,YAAY;EACV,SAAS;EACT,cAAc;EACd,YAAY;EACZ,eAAe;EACf,MAAM;EACN,WAAW;EACX,QAAQ;EACR,gBAAgB;EAChB,mBAAmB;EACnB,UAAU;CACZ;CACA,QAAQ;EACN,6BAA6B;EAC7B,2BAA2B;EAC3B,kCAAkC;EAClC,yBAAyB;EACzB,gCAAgC;EAChC,uBAAuB;EACvB,8BAA8B;EAC9B,0BAA0B;EAC1B,iCAAiC;EACjC,yBAAyB;EACzB,uBAAuB;EACvB,uBAAuB;EACvB,yBAAyB;EACzB,2BAA2B;EAC3B,0BAA0B;EAC1B,2BAA2B;EAC3B,kBAAkB;EAClB,iBAAiB;EACjB,gBAAgB;EAChB,gBAAgB;EAChB,cAAc;EACd,cAAc;EACd,eAAe;EACf,cAAc;EACd,oBAAoB;EACpB,kBAAkB;EAClB,kBAAkB;EAClB,mBAAmB;EACnB,YAAY;EACZ,YAAY;EACZ,YAAY;EACZ,eAAe;EACf,eAAe;EACf,gBAAgB;EAChB,gBAAgB;EAChB,gBAAgB;EAChB,mBAAmB;EACnB,mBAAmB;EACnB,oBAAoB;EACpB,qBAAqB;EACrB,qBAAqB;EACrB,wBAAwB;EACxB,4BAA4B;EAC5B,wBAAwB;EACxB,uBAAuB;EACvB,kCAAkC;EAClC,yBAAyB;EACzB,yBAAyB;EACzB,0BAA0B;EAC1B,qBAAqB;CACvB;CACA,YAAY;EACV,6BAA6B;EAC7B,2BAA2B;EAC3B,kCAAkC;EAClC,yBAAyB;EACzB,gCAAgC;EAChC,uBAAuB;EACvB,8BAA8B;EAC9B,0BAA0B;EAC1B,iCAAiC;EACjC,yBAAyB;EACzB,uBAAuB;EACvB,uBAAuB;EACvB,yBAAyB;EACzB,2BAA2B;EAC3B,0BAA0B;EAC1B,2BAA2B;EAC3B,kBAAkB;EAClB,iBAAiB;EACjB,gBAAgB;EAChB,gBAAgB;EAChB,cAAc;EACd,cAAc;EACd,eAAe;EACf,cAAc;EACd,oBAAoB;EACpB,kBAAkB;EAClB,kBAAkB;EAClB,mBAAmB;EACnB,YAAY;EACZ,YAAY;EACZ,YAAY;EACZ,eAAe;EACf,eAAe;EACf,gBAAgB;EAChB,gBAAgB;EAChB,gBAAgB;EAChB,mBAAmB;EACnB,mBAAmB;EACnB,oBAAoB;EACpB,qBAAqB;EACrB,qBAAqB;EACrB,wBAAwB;EACxB,4BAA4B;EAC5B,wBAAwB;EACxB,uBAAuB;EACvB,kCAAkC;EAClC,yBAAyB;EACzB,yBAAyB;EACzB,0BAA0B;EAC1B,qBAAqB;CACvB;AACF"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/gruvbox.ts","../src/gruvboxHard.ts","../src/gruvboxSoft.ts"],"sourcesContent":["import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Gruvbox — Gruvbox light and dark, medium contrast.\n *\n * Color only: no layout, no texture, no typography. Compose it under any\n * `@ox-content/theme-*` skin, or use it on its own over the default theme.\n *\n * Generated from `scripts/theme-colors/palettes.json`; edit that file and run\n * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.\n */\nexport const gruvbox: ThemeConfig = {\n name: \"gruvbox\",\n colors: {\n primary: \"#af3a03\",\n primaryHover: \"#8f2f02\",\n background: \"#fbf1c7\",\n backgroundAlt: \"#f2e5bc\",\n text: \"#3c3836\",\n textMuted: \"#665c54\",\n border: \"#d5c4a1\",\n codeBackground: \"#f2e5bc\",\n codeBackgroundTop: \"#f2e5bc\",\n codeText: \"#3c3836\",\n },\n darkColors: {\n primary: \"#fe8019\",\n primaryHover: \"#fea86a\",\n background: \"#282828\",\n backgroundAlt: \"#32302f\",\n text: \"#ebdbb2\",\n textMuted: \"#a89984\",\n border: \"#504945\",\n codeBackground: \"#1d2021\",\n codeBackgroundTop: \"#1d2021\",\n codeText: \"#ebdbb2\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #076678 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #b57614 18%, transparent)\",\n \"color-code-line-warning-border\": \"#b57614\",\n \"color-code-line-error\": \"color-mix(in srgb, #9d0006 20%, transparent)\",\n \"color-code-line-error-border\": \"#9d0006\",\n \"color-code-line-add\": \"color-mix(in srgb, #79740e 16%, transparent)\",\n \"color-code-line-add-border\": \"#79740e\",\n \"color-code-line-remove\": \"color-mix(in srgb, #9d0006 14%, transparent)\",\n \"color-code-line-remove-border\": \"#9d0006\",\n \"color-code-line-focus\": \"color-mix(in srgb, #af3a03 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f2e5bc 92%, #3c3836)\",\n \"color-code-title-text\": \"color-mix(in srgb, #3c3836 88%, #f2e5bc)\",\n \"color-code-title-border\": \"color-mix(in srgb, #3c3836 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #3c3836 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #d5c4a1 92%, transparent)\",\n \"color-backdrop\": \"rgba(88, 84, 70, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f2e5bc 62%, #fbf1c7)\",\n \"surface-line\": \"color-mix(in srgb, #d5c4a1 72%, #fbf1c7)\",\n \"brand-violet\": \"#8f3f71\",\n \"brand-cyan\": \"#427b58\",\n \"brand-lime\": \"#79740e\",\n \"brand-coral\": \"#9d0006\",\n \"brand-navy\": \"color-mix(in srgb, #3c3836 70%, #fbf1c7)\",\n \"brand-violet-rgb\": \"143, 63, 113\",\n \"brand-cyan-rgb\": \"66, 123, 88\",\n \"brand-lime-rgb\": \"121, 116, 14\",\n \"brand-coral-rgb\": \"157, 0, 6\",\n \"accent-a\": \"#af3a03\",\n \"accent-b\": \"#8f3f71\",\n \"accent-c\": \"#427b58\",\n \"accent-warm\": \"#b57614\",\n \"accent-cool\": \"#076678\",\n \"accent-a-ink\": \"#af3a03\",\n \"accent-b-ink\": \"#8f3f71\",\n \"accent-c-ink\": \"#3f7654\",\n \"accent-warm-ink\": \"#915e10\",\n \"accent-cool-ink\": \"#076678\",\n \"accent-coral-ink\": \"#9d0006\",\n \"syntax-foreground\": \"#3c3836\",\n \"syntax-background\": \"#f2e5bc\",\n \"syntax-token-comment\": \"color-mix(in srgb, #3c3836 55%, #f2e5bc)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #3c3836 72%, #f2e5bc)\",\n \"syntax-token-keyword\": \"#8f3f71\",\n \"syntax-token-string\": \"#79740e\",\n \"syntax-token-string-expression\": \"#79740e\",\n \"syntax-token-constant\": \"#b57614\",\n \"syntax-token-function\": \"#076678\",\n \"syntax-token-parameter\": \"#9d0006\",\n \"syntax-token-link\": \"#427b58\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #83a598 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #fabd2f 18%, transparent)\",\n \"color-code-line-warning-border\": \"#fabd2f\",\n \"color-code-line-error\": \"color-mix(in srgb, #fb4934 20%, transparent)\",\n \"color-code-line-error-border\": \"#fb4934\",\n \"color-code-line-add\": \"color-mix(in srgb, #b8bb26 16%, transparent)\",\n \"color-code-line-add-border\": \"#b8bb26\",\n \"color-code-line-remove\": \"color-mix(in srgb, #fb4934 14%, transparent)\",\n \"color-code-line-remove-border\": \"#fb4934\",\n \"color-code-line-focus\": \"color-mix(in srgb, #fe8019 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #1d2021 92%, #ebdbb2)\",\n \"color-code-title-text\": \"color-mix(in srgb, #ebdbb2 88%, #1d2021)\",\n \"color-code-title-border\": \"color-mix(in srgb, #ebdbb2 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #ebdbb2 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #504945 92%, transparent)\",\n \"color-backdrop\": \"rgba(14, 14, 14, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #32302f 62%, #282828)\",\n \"surface-line\": \"color-mix(in srgb, #504945 72%, #282828)\",\n \"brand-violet\": \"#d3869b\",\n \"brand-cyan\": \"#8ec07c\",\n \"brand-lime\": \"#b8bb26\",\n \"brand-coral\": \"#fb4934\",\n \"brand-navy\": \"color-mix(in srgb, #ebdbb2 70%, #282828)\",\n \"brand-violet-rgb\": \"211, 134, 155\",\n \"brand-cyan-rgb\": \"142, 192, 124\",\n \"brand-lime-rgb\": \"184, 187, 38\",\n \"brand-coral-rgb\": \"251, 73, 52\",\n \"accent-a\": \"#fe8019\",\n \"accent-b\": \"#d3869b\",\n \"accent-c\": \"#8ec07c\",\n \"accent-warm\": \"#fabd2f\",\n \"accent-cool\": \"#83a598\",\n \"accent-a-ink\": \"#fe8019\",\n \"accent-b-ink\": \"#d3869b\",\n \"accent-c-ink\": \"#8ec07c\",\n \"accent-warm-ink\": \"#fabd2f\",\n \"accent-cool-ink\": \"#83a598\",\n \"accent-coral-ink\": \"#fb5844\",\n \"syntax-foreground\": \"#ebdbb2\",\n \"syntax-background\": \"#1d2021\",\n \"syntax-token-comment\": \"color-mix(in srgb, #ebdbb2 55%, #1d2021)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #ebdbb2 72%, #1d2021)\",\n \"syntax-token-keyword\": \"#d3869b\",\n \"syntax-token-string\": \"#b8bb26\",\n \"syntax-token-string-expression\": \"#b8bb26\",\n \"syntax-token-constant\": \"#fabd2f\",\n \"syntax-token-function\": \"#83a598\",\n \"syntax-token-parameter\": \"#fb4934\",\n \"syntax-token-link\": \"#8ec07c\",\n },\n};\n","import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Gruvbox — Gruvbox light and dark, hard contrast.\n *\n * Color only: no layout, no texture, no typography. Compose it under any\n * `@ox-content/theme-*` skin, or use it on its own over the default theme.\n *\n * Generated from `scripts/theme-colors/palettes.json`; edit that file and run\n * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.\n */\nexport const gruvboxHard: ThemeConfig = {\n name: \"gruvbox-hard\",\n colors: {\n primary: \"#076678\",\n primaryHover: \"#3d7578\",\n background: \"#f9f5d7\",\n backgroundAlt: \"#f9f5d7\",\n text: \"#3c3836\",\n textMuted: \"#75695d\",\n border: \"#ebdbb2\",\n codeBackground: \"#f9f5d7\",\n codeBackgroundTop: \"#f9f5d7\",\n codeText: \"#3c3836\",\n },\n darkColors: {\n primary: \"#83a598\",\n primaryHover: \"#5b9496\",\n background: \"#1d2021\",\n backgroundAlt: \"#1d2021\",\n text: \"#ebdbb2\",\n textMuted: \"#96887a\",\n border: \"#3c3836\",\n codeBackground: \"#1d2021\",\n codeBackgroundTop: \"#1d2021\",\n codeText: \"#ebdbb2\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #458588 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #d79921 18%, transparent)\",\n \"color-code-line-warning-border\": \"#d79921\",\n \"color-code-line-error\": \"color-mix(in srgb, #cc241d 20%, transparent)\",\n \"color-code-line-error-border\": \"#cc241d\",\n \"color-code-line-add\": \"color-mix(in srgb, #98971a 16%, transparent)\",\n \"color-code-line-add-border\": \"#98971a\",\n \"color-code-line-remove\": \"color-mix(in srgb, #cc241d 14%, transparent)\",\n \"color-code-line-remove-border\": \"#cc241d\",\n \"color-code-line-focus\": \"color-mix(in srgb, #076678 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f9f5d7 92%, #3c3836)\",\n \"color-code-title-text\": \"color-mix(in srgb, #3c3836 88%, #f9f5d7)\",\n \"color-code-title-border\": \"color-mix(in srgb, #3c3836 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #3c3836 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ebdbb2 92%, transparent)\",\n \"color-backdrop\": \"rgba(87, 86, 75, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f9f5d7 62%, #f9f5d7)\",\n \"surface-line\": \"color-mix(in srgb, #ebdbb2 72%, #f9f5d7)\",\n \"brand-violet\": \"#b16286\",\n \"brand-cyan\": \"#689d6a\",\n \"brand-lime\": \"#98971a\",\n \"brand-coral\": \"#cc241d\",\n \"brand-navy\": \"color-mix(in srgb, #3c3836 70%, #f9f5d7)\",\n \"brand-violet-rgb\": \"177, 98, 134\",\n \"brand-cyan-rgb\": \"104, 157, 106\",\n \"brand-lime-rgb\": \"152, 151, 26\",\n \"brand-coral-rgb\": \"204, 36, 29\",\n \"accent-a\": \"#076678\",\n \"accent-b\": \"#b16286\",\n \"accent-c\": \"#689d6a\",\n \"accent-warm\": \"#d79921\",\n \"accent-cool\": \"#458588\",\n \"accent-a-ink\": \"#076678\",\n \"accent-b-ink\": \"#9c5676\",\n \"accent-c-ink\": \"#4f7751\",\n \"accent-warm-ink\": \"#926816\",\n \"accent-cool-ink\": \"#3d7578\",\n \"accent-coral-ink\": \"#cc241d\",\n \"syntax-foreground\": \"#3c3836\",\n \"syntax-background\": \"#f9f5d7\",\n \"syntax-token-comment\": \"#928374\",\n \"syntax-token-punctuation\": \"#7c6f64\",\n \"syntax-token-keyword\": \"#9d0006\",\n \"syntax-token-string\": \"#79740e\",\n \"syntax-token-string-expression\": \"#79740e\",\n \"syntax-token-constant\": \"#8f3f71\",\n \"syntax-token-function\": \"#b57614\",\n \"syntax-token-parameter\": \"#076678\",\n \"syntax-token-link\": \"#928374\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #458588 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #d79921 18%, transparent)\",\n \"color-code-line-warning-border\": \"#d79921\",\n \"color-code-line-error\": \"color-mix(in srgb, #cc241d 20%, transparent)\",\n \"color-code-line-error-border\": \"#cc241d\",\n \"color-code-line-add\": \"color-mix(in srgb, #98971a 16%, transparent)\",\n \"color-code-line-add-border\": \"#98971a\",\n \"color-code-line-remove\": \"color-mix(in srgb, #cc241d 14%, transparent)\",\n \"color-code-line-remove-border\": \"#cc241d\",\n \"color-code-line-focus\": \"color-mix(in srgb, #83a598 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #1d2021 92%, #ebdbb2)\",\n \"color-code-title-text\": \"color-mix(in srgb, #ebdbb2 88%, #1d2021)\",\n \"color-code-title-border\": \"color-mix(in srgb, #ebdbb2 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #ebdbb2 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #3c3836 92%, transparent)\",\n \"color-backdrop\": \"rgba(10, 11, 12, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #1d2021 62%, #1d2021)\",\n \"surface-line\": \"color-mix(in srgb, #3c3836 72%, #1d2021)\",\n \"brand-violet\": \"#b16286\",\n \"brand-cyan\": \"#689d6a\",\n \"brand-lime\": \"#98971a\",\n \"brand-coral\": \"#cc241d\",\n \"brand-navy\": \"color-mix(in srgb, #ebdbb2 70%, #1d2021)\",\n \"brand-violet-rgb\": \"177, 98, 134\",\n \"brand-cyan-rgb\": \"104, 157, 106\",\n \"brand-lime-rgb\": \"152, 151, 26\",\n \"brand-coral-rgb\": \"204, 36, 29\",\n \"accent-a\": \"#83a598\",\n \"accent-b\": \"#b16286\",\n \"accent-c\": \"#689d6a\",\n \"accent-warm\": \"#d79921\",\n \"accent-cool\": \"#458588\",\n \"accent-a-ink\": \"#83a598\",\n \"accent-b-ink\": \"#ba7595\",\n \"accent-c-ink\": \"#689d6a\",\n \"accent-warm-ink\": \"#d79921\",\n \"accent-cool-ink\": \"#5b9496\",\n \"accent-coral-ink\": \"#da615c\",\n \"syntax-foreground\": \"#ebdbb2\",\n \"syntax-background\": \"#1d2021\",\n \"syntax-token-comment\": \"#928374\",\n \"syntax-token-punctuation\": \"#a89984\",\n \"syntax-token-keyword\": \"#fb4934\",\n \"syntax-token-string\": \"#b8bb26\",\n \"syntax-token-string-expression\": \"#b8bb26\",\n \"syntax-token-constant\": \"#d3869b\",\n \"syntax-token-function\": \"#fabd2f\",\n \"syntax-token-parameter\": \"#83a598\",\n \"syntax-token-link\": \"#928374\",\n },\n};\n","import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Gruvbox — Gruvbox light and dark, soft contrast.\n *\n * Color only: no layout, no texture, no typography. Compose it under any\n * `@ox-content/theme-*` skin, or use it on its own over the default theme.\n *\n * Generated from `scripts/theme-colors/palettes.json`; edit that file and run\n * `node scripts/theme-colors/generate.mjs` rather than editing this by hand.\n */\nexport const gruvboxSoft: ThemeConfig = {\n name: \"gruvbox-soft\",\n colors: {\n primary: \"#076678\",\n primaryHover: \"#376a6d\",\n background: \"#f2e5bc\",\n backgroundAlt: \"#f2e5bc\",\n text: \"#3c3836\",\n textMuted: \"#6f6458\",\n border: \"#ebdbb2\",\n codeBackground: \"#f2e5bc\",\n codeBackgroundTop: \"#f2e5bc\",\n codeText: \"#3c3836\",\n },\n darkColors: {\n primary: \"#83a598\",\n primaryHover: \"#72a2a5\",\n background: \"#32302f\",\n backgroundAlt: \"#32302f\",\n text: \"#ebdbb2\",\n textMuted: \"#a3978a\",\n border: \"#3c3836\",\n codeBackground: \"#32302f\",\n codeBackgroundTop: \"#32302f\",\n codeText: \"#ebdbb2\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #458588 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #d79921 18%, transparent)\",\n \"color-code-line-warning-border\": \"#d79921\",\n \"color-code-line-error\": \"color-mix(in srgb, #cc241d 20%, transparent)\",\n \"color-code-line-error-border\": \"#cc241d\",\n \"color-code-line-add\": \"color-mix(in srgb, #98971a 16%, transparent)\",\n \"color-code-line-add-border\": \"#98971a\",\n \"color-code-line-remove\": \"color-mix(in srgb, #cc241d 14%, transparent)\",\n \"color-code-line-remove-border\": \"#cc241d\",\n \"color-code-line-focus\": \"color-mix(in srgb, #076678 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f2e5bc 92%, #3c3836)\",\n \"color-code-title-text\": \"color-mix(in srgb, #3c3836 88%, #f2e5bc)\",\n \"color-code-title-border\": \"color-mix(in srgb, #3c3836 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #3c3836 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ebdbb2 92%, transparent)\",\n \"color-backdrop\": \"rgba(85, 80, 66, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f2e5bc 62%, #f2e5bc)\",\n \"surface-line\": \"color-mix(in srgb, #ebdbb2 72%, #f2e5bc)\",\n \"brand-violet\": \"#b16286\",\n \"brand-cyan\": \"#689d6a\",\n \"brand-lime\": \"#98971a\",\n \"brand-coral\": \"#cc241d\",\n \"brand-navy\": \"color-mix(in srgb, #3c3836 70%, #f2e5bc)\",\n \"brand-violet-rgb\": \"177, 98, 134\",\n \"brand-cyan-rgb\": \"104, 157, 106\",\n \"brand-lime-rgb\": \"152, 151, 26\",\n \"brand-coral-rgb\": \"204, 36, 29\",\n \"accent-a\": \"#076678\",\n \"accent-b\": \"#b16286\",\n \"accent-c\": \"#689d6a\",\n \"accent-warm\": \"#d79921\",\n \"accent-cool\": \"#458588\",\n \"accent-a-ink\": \"#076678\",\n \"accent-b-ink\": \"#8e4e6b\",\n \"accent-c-ink\": \"#476b48\",\n \"accent-warm-ink\": \"#815c14\",\n \"accent-cool-ink\": \"#376a6d\",\n \"accent-coral-ink\": \"#c4231c\",\n \"syntax-foreground\": \"#3c3836\",\n \"syntax-background\": \"#f2e5bc\",\n \"syntax-token-comment\": \"#928374\",\n \"syntax-token-punctuation\": \"#7c6f64\",\n \"syntax-token-keyword\": \"#9d0006\",\n \"syntax-token-string\": \"#79740e\",\n \"syntax-token-string-expression\": \"#79740e\",\n \"syntax-token-constant\": \"#8f3f71\",\n \"syntax-token-function\": \"#b57614\",\n \"syntax-token-parameter\": \"#076678\",\n \"syntax-token-link\": \"#928374\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #458588 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #d79921 18%, transparent)\",\n \"color-code-line-warning-border\": \"#d79921\",\n \"color-code-line-error\": \"color-mix(in srgb, #cc241d 20%, transparent)\",\n \"color-code-line-error-border\": \"#cc241d\",\n \"color-code-line-add\": \"color-mix(in srgb, #98971a 16%, transparent)\",\n \"color-code-line-add-border\": \"#98971a\",\n \"color-code-line-remove\": \"color-mix(in srgb, #cc241d 14%, transparent)\",\n \"color-code-line-remove-border\": \"#cc241d\",\n \"color-code-line-focus\": \"color-mix(in srgb, #83a598 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #32302f 92%, #ebdbb2)\",\n \"color-code-title-text\": \"color-mix(in srgb, #ebdbb2 88%, #32302f)\",\n \"color-code-title-border\": \"color-mix(in srgb, #ebdbb2 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #ebdbb2 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #3c3836 92%, transparent)\",\n \"color-backdrop\": \"rgba(18, 17, 16, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #32302f 62%, #32302f)\",\n \"surface-line\": \"color-mix(in srgb, #3c3836 72%, #32302f)\",\n \"brand-violet\": \"#b16286\",\n \"brand-cyan\": \"#689d6a\",\n \"brand-lime\": \"#98971a\",\n \"brand-coral\": \"#cc241d\",\n \"brand-navy\": \"color-mix(in srgb, #ebdbb2 70%, #32302f)\",\n \"brand-violet-rgb\": \"177, 98, 134\",\n \"brand-cyan-rgb\": \"104, 157, 106\",\n \"brand-lime-rgb\": \"152, 151, 26\",\n \"brand-coral-rgb\": \"204, 36, 29\",\n \"accent-a\": \"#83a598\",\n \"accent-b\": \"#b16286\",\n \"accent-c\": \"#689d6a\",\n \"accent-warm\": \"#d79921\",\n \"accent-cool\": \"#458588\",\n \"accent-a-ink\": \"#83a598\",\n \"accent-b-ink\": \"#c488a3\",\n \"accent-c-ink\": \"#74a576\",\n \"accent-warm-ink\": \"#d79921\",\n \"accent-cool-ink\": \"#72a2a5\",\n \"accent-coral-ink\": \"#e07c77\",\n \"syntax-foreground\": \"#ebdbb2\",\n \"syntax-background\": \"#32302f\",\n \"syntax-token-comment\": \"#928374\",\n \"syntax-token-punctuation\": \"#a89984\",\n \"syntax-token-keyword\": \"#fb4934\",\n \"syntax-token-string\": \"#b8bb26\",\n \"syntax-token-string-expression\": \"#b8bb26\",\n \"syntax-token-constant\": \"#d3869b\",\n \"syntax-token-function\": \"#fabd2f\",\n \"syntax-token-parameter\": \"#83a598\",\n \"syntax-token-link\": \"#928374\",\n },\n};\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ox-content/theme-color-gruvbox",
3
- "version": "3.0.0-alpha.8",
3
+ "version": "3.0.0-beta.0",
4
4
  "description": "Gruvbox light and dark, medium contrast — an Ox Content color scheme that composes with any @ox-content/theme-* skin",
5
5
  "keywords": [
6
6
  "color-scheme",
@@ -42,7 +42,7 @@
42
42
  "@typescript/native-preview": "^7.0.0-dev.20260707.2",
43
43
  "typescript": "^7.0.2",
44
44
  "vite-plus": "0.2.9",
45
- "@ox-content/vite-plugin": "3.0.0-alpha.8"
45
+ "@ox-content/vite-plugin": "3.0.0-beta.0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@ox-content/vite-plugin": ">=3.0.0-alpha.1"