@ox-content/theme-color-catppuccin 3.0.0-alpha.9 → 3.0.0-beta.1

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, catppuccin, { colors: { primary: "#ff5f56" } }];
35
35
  ```
36
36
 
37
+ ## Variants
38
+
39
+ The default export stays `catppuccin` (Catppuccin Latte and Mocha). Named variants
40
+ are exported from the same package:
41
+
42
+ ```ts
43
+ import { catppuccinFrappe, catppuccinMacchiato } from "@ox-content/theme-color-catppuccin";
44
+ ```
45
+
46
+ - `catppuccinFrappe` — Catppuccin Latte and Frappé
47
+ - `catppuccinMacchiato` — Catppuccin Latte and Macchiato
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/catppuccin.ts
6
6
  /**
7
7
  * Catppuccin — Catppuccin Latte and Mocha.
8
8
  *
@@ -144,5 +144,291 @@ const catppuccin = {
144
144
  }
145
145
  };
146
146
  //#endregion
147
+ //#region src/catppuccinFrappe.ts
148
+ /**
149
+ * Catppuccin — Catppuccin Latte and Frappé.
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 catppuccinFrappe = {
158
+ name: "catppuccin-frappe",
159
+ colors: {
160
+ primary: "#1d62eb",
161
+ primaryHover: "#114ac7",
162
+ background: "#eff1f5",
163
+ backgroundAlt: "#e6e9ef",
164
+ text: "#4c4f69",
165
+ textMuted: "#686b80",
166
+ border: "#ccd0da",
167
+ codeBackground: "#e6e9ef",
168
+ codeBackgroundTop: "#e6e9ef",
169
+ codeText: "#4c4f69"
170
+ },
171
+ darkColors: {
172
+ primary: "#8caaee",
173
+ primaryHover: "#99d1db",
174
+ background: "#303446",
175
+ backgroundAlt: "#292c3c",
176
+ text: "#c6d0f5",
177
+ textMuted: "#949cbb",
178
+ border: "#626880",
179
+ codeBackground: "#303446",
180
+ codeBackgroundTop: "#303446",
181
+ codeText: "#c6d0f5"
182
+ },
183
+ tokens: {
184
+ "color-code-line-highlight": "color-mix(in srgb, #1e66f5 16%, transparent)",
185
+ "color-code-line-warning": "color-mix(in srgb, #df8e1d 18%, transparent)",
186
+ "color-code-line-warning-border": "#df8e1d",
187
+ "color-code-line-error": "color-mix(in srgb, #d20f39 20%, transparent)",
188
+ "color-code-line-error-border": "#d20f39",
189
+ "color-code-line-add": "color-mix(in srgb, #40a02b 16%, transparent)",
190
+ "color-code-line-add-border": "#40a02b",
191
+ "color-code-line-remove": "color-mix(in srgb, #d20f39 14%, transparent)",
192
+ "color-code-line-remove-border": "#d20f39",
193
+ "color-code-line-focus": "color-mix(in srgb, #1d62eb 16%, transparent)",
194
+ "color-code-line-dim": "0.45",
195
+ "color-code-title-bg": "color-mix(in srgb, #e6e9ef 92%, #4c4f69)",
196
+ "color-code-title-text": "color-mix(in srgb, #4c4f69 88%, #e6e9ef)",
197
+ "color-code-title-border": "color-mix(in srgb, #4c4f69 22%, transparent)",
198
+ "color-code-line-number": "color-mix(in srgb, #4c4f69 48%, transparent)",
199
+ "color-code-frame-border": "color-mix(in srgb, #ccd0da 92%, transparent)",
200
+ "color-backdrop": "rgba(84, 84, 86, 0.62)",
201
+ "surface-glass": "color-mix(in srgb, #e6e9ef 62%, #eff1f5)",
202
+ "surface-line": "color-mix(in srgb, #ccd0da 72%, #eff1f5)",
203
+ "brand-violet": "#8839ef",
204
+ "brand-cyan": "#179299",
205
+ "brand-lime": "#40a02b",
206
+ "brand-coral": "#d20f39",
207
+ "brand-navy": "color-mix(in srgb, #4c4f69 70%, #eff1f5)",
208
+ "brand-violet-rgb": "136, 57, 239",
209
+ "brand-cyan-rgb": "23, 146, 153",
210
+ "brand-lime-rgb": "64, 160, 43",
211
+ "brand-coral-rgb": "210, 15, 57",
212
+ "accent-a": "#1d62eb",
213
+ "accent-b": "#8839ef",
214
+ "accent-c": "#179299",
215
+ "accent-warm": "#df8e1d",
216
+ "accent-cool": "#1e66f5",
217
+ "accent-a-ink": "#1d62eb",
218
+ "accent-b-ink": "#8839ef",
219
+ "accent-c-ink": "#12757a",
220
+ "accent-warm-ink": "#986114",
221
+ "accent-cool-ink": "#1d62eb",
222
+ "accent-coral-ink": "#d20f39",
223
+ "syntax-foreground": "#4c4f69",
224
+ "syntax-background": "#e6e9ef",
225
+ "syntax-token-comment": "color-mix(in srgb, #4c4f69 55%, #e6e9ef)",
226
+ "syntax-token-punctuation": "color-mix(in srgb, #4c4f69 72%, #e6e9ef)",
227
+ "syntax-token-keyword": "#8839ef",
228
+ "syntax-token-string": "#40a02b",
229
+ "syntax-token-string-expression": "#40a02b",
230
+ "syntax-token-constant": "#df8e1d",
231
+ "syntax-token-function": "#1e66f5",
232
+ "syntax-token-parameter": "#d20f39",
233
+ "syntax-token-link": "#179299"
234
+ },
235
+ darkTokens: {
236
+ "color-code-line-highlight": "color-mix(in srgb, #8caaee 16%, transparent)",
237
+ "color-code-line-warning": "color-mix(in srgb, #e5c890 18%, transparent)",
238
+ "color-code-line-warning-border": "#e5c890",
239
+ "color-code-line-error": "color-mix(in srgb, #e78284 20%, transparent)",
240
+ "color-code-line-error-border": "#e78284",
241
+ "color-code-line-add": "color-mix(in srgb, #a6d189 16%, transparent)",
242
+ "color-code-line-add-border": "#a6d189",
243
+ "color-code-line-remove": "color-mix(in srgb, #e78284 14%, transparent)",
244
+ "color-code-line-remove-border": "#e78284",
245
+ "color-code-line-focus": "color-mix(in srgb, #8caaee 16%, transparent)",
246
+ "color-code-line-dim": "0.35",
247
+ "color-code-title-bg": "color-mix(in srgb, #303446 92%, #c6d0f5)",
248
+ "color-code-title-text": "color-mix(in srgb, #c6d0f5 88%, #303446)",
249
+ "color-code-title-border": "color-mix(in srgb, #c6d0f5 22%, transparent)",
250
+ "color-code-line-number": "color-mix(in srgb, #c6d0f5 48%, transparent)",
251
+ "color-code-frame-border": "color-mix(in srgb, #626880 92%, transparent)",
252
+ "color-backdrop": "rgba(17, 18, 25, 0.62)",
253
+ "surface-glass": "color-mix(in srgb, #292c3c 62%, #303446)",
254
+ "surface-line": "color-mix(in srgb, #626880 72%, #303446)",
255
+ "brand-violet": "#f4b8e4",
256
+ "brand-cyan": "#81c8be",
257
+ "brand-lime": "#a6d189",
258
+ "brand-coral": "#e78284",
259
+ "brand-navy": "color-mix(in srgb, #c6d0f5 70%, #303446)",
260
+ "brand-violet-rgb": "244, 184, 228",
261
+ "brand-cyan-rgb": "129, 200, 190",
262
+ "brand-lime-rgb": "166, 209, 137",
263
+ "brand-coral-rgb": "231, 130, 132",
264
+ "accent-a": "#8caaee",
265
+ "accent-b": "#f4b8e4",
266
+ "accent-c": "#81c8be",
267
+ "accent-warm": "#e5c890",
268
+ "accent-cool": "#8caaee",
269
+ "accent-a-ink": "#8caaee",
270
+ "accent-b-ink": "#f4b8e4",
271
+ "accent-c-ink": "#81c8be",
272
+ "accent-warm-ink": "#e5c890",
273
+ "accent-cool-ink": "#8caaee",
274
+ "accent-coral-ink": "#e78284",
275
+ "syntax-foreground": "#c6d0f5",
276
+ "syntax-background": "#303446",
277
+ "syntax-token-comment": "#949cbb",
278
+ "syntax-token-punctuation": "#949cbb",
279
+ "syntax-token-keyword": "#ca9ee6",
280
+ "syntax-token-string": "#a6d189",
281
+ "syntax-token-string-expression": "#a6d189",
282
+ "syntax-token-constant": "#ef9f76",
283
+ "syntax-token-function": "#8caaee",
284
+ "syntax-token-parameter": "#ea999c",
285
+ "syntax-token-link": "#babbf1"
286
+ }
287
+ };
288
+ //#endregion
289
+ //#region src/catppuccinMacchiato.ts
290
+ /**
291
+ * Catppuccin — Catppuccin Latte and Macchiato.
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 catppuccinMacchiato = {
300
+ name: "catppuccin-macchiato",
301
+ colors: {
302
+ primary: "#1d62eb",
303
+ primaryHover: "#114ac7",
304
+ background: "#eff1f5",
305
+ backgroundAlt: "#e6e9ef",
306
+ text: "#4c4f69",
307
+ textMuted: "#686b80",
308
+ border: "#ccd0da",
309
+ codeBackground: "#e6e9ef",
310
+ codeBackgroundTop: "#e6e9ef",
311
+ codeText: "#4c4f69"
312
+ },
313
+ darkColors: {
314
+ primary: "#8aadf4",
315
+ primaryHover: "#91d7e3",
316
+ background: "#24273a",
317
+ backgroundAlt: "#1e2030",
318
+ text: "#cad3f5",
319
+ textMuted: "#939ab7",
320
+ border: "#5b6078",
321
+ codeBackground: "#24273a",
322
+ codeBackgroundTop: "#24273a",
323
+ codeText: "#cad3f5"
324
+ },
325
+ tokens: {
326
+ "color-code-line-highlight": "color-mix(in srgb, #1e66f5 16%, transparent)",
327
+ "color-code-line-warning": "color-mix(in srgb, #df8e1d 18%, transparent)",
328
+ "color-code-line-warning-border": "#df8e1d",
329
+ "color-code-line-error": "color-mix(in srgb, #d20f39 20%, transparent)",
330
+ "color-code-line-error-border": "#d20f39",
331
+ "color-code-line-add": "color-mix(in srgb, #40a02b 16%, transparent)",
332
+ "color-code-line-add-border": "#40a02b",
333
+ "color-code-line-remove": "color-mix(in srgb, #d20f39 14%, transparent)",
334
+ "color-code-line-remove-border": "#d20f39",
335
+ "color-code-line-focus": "color-mix(in srgb, #1d62eb 16%, transparent)",
336
+ "color-code-line-dim": "0.45",
337
+ "color-code-title-bg": "color-mix(in srgb, #e6e9ef 92%, #4c4f69)",
338
+ "color-code-title-text": "color-mix(in srgb, #4c4f69 88%, #e6e9ef)",
339
+ "color-code-title-border": "color-mix(in srgb, #4c4f69 22%, transparent)",
340
+ "color-code-line-number": "color-mix(in srgb, #4c4f69 48%, transparent)",
341
+ "color-code-frame-border": "color-mix(in srgb, #ccd0da 92%, transparent)",
342
+ "color-backdrop": "rgba(84, 84, 86, 0.62)",
343
+ "surface-glass": "color-mix(in srgb, #e6e9ef 62%, #eff1f5)",
344
+ "surface-line": "color-mix(in srgb, #ccd0da 72%, #eff1f5)",
345
+ "brand-violet": "#8839ef",
346
+ "brand-cyan": "#179299",
347
+ "brand-lime": "#40a02b",
348
+ "brand-coral": "#d20f39",
349
+ "brand-navy": "color-mix(in srgb, #4c4f69 70%, #eff1f5)",
350
+ "brand-violet-rgb": "136, 57, 239",
351
+ "brand-cyan-rgb": "23, 146, 153",
352
+ "brand-lime-rgb": "64, 160, 43",
353
+ "brand-coral-rgb": "210, 15, 57",
354
+ "accent-a": "#1d62eb",
355
+ "accent-b": "#8839ef",
356
+ "accent-c": "#179299",
357
+ "accent-warm": "#df8e1d",
358
+ "accent-cool": "#1e66f5",
359
+ "accent-a-ink": "#1d62eb",
360
+ "accent-b-ink": "#8839ef",
361
+ "accent-c-ink": "#12757a",
362
+ "accent-warm-ink": "#986114",
363
+ "accent-cool-ink": "#1d62eb",
364
+ "accent-coral-ink": "#d20f39",
365
+ "syntax-foreground": "#4c4f69",
366
+ "syntax-background": "#e6e9ef",
367
+ "syntax-token-comment": "color-mix(in srgb, #4c4f69 55%, #e6e9ef)",
368
+ "syntax-token-punctuation": "color-mix(in srgb, #4c4f69 72%, #e6e9ef)",
369
+ "syntax-token-keyword": "#8839ef",
370
+ "syntax-token-string": "#40a02b",
371
+ "syntax-token-string-expression": "#40a02b",
372
+ "syntax-token-constant": "#df8e1d",
373
+ "syntax-token-function": "#1e66f5",
374
+ "syntax-token-parameter": "#d20f39",
375
+ "syntax-token-link": "#179299"
376
+ },
377
+ darkTokens: {
378
+ "color-code-line-highlight": "color-mix(in srgb, #8aadf4 16%, transparent)",
379
+ "color-code-line-warning": "color-mix(in srgb, #eed49f 18%, transparent)",
380
+ "color-code-line-warning-border": "#eed49f",
381
+ "color-code-line-error": "color-mix(in srgb, #ed8796 20%, transparent)",
382
+ "color-code-line-error-border": "#ed8796",
383
+ "color-code-line-add": "color-mix(in srgb, #a6da95 16%, transparent)",
384
+ "color-code-line-add-border": "#a6da95",
385
+ "color-code-line-remove": "color-mix(in srgb, #ed8796 14%, transparent)",
386
+ "color-code-line-remove-border": "#ed8796",
387
+ "color-code-line-focus": "color-mix(in srgb, #8aadf4 16%, transparent)",
388
+ "color-code-line-dim": "0.35",
389
+ "color-code-title-bg": "color-mix(in srgb, #24273a 92%, #cad3f5)",
390
+ "color-code-title-text": "color-mix(in srgb, #cad3f5 88%, #24273a)",
391
+ "color-code-title-border": "color-mix(in srgb, #cad3f5 22%, transparent)",
392
+ "color-code-line-number": "color-mix(in srgb, #cad3f5 48%, transparent)",
393
+ "color-code-frame-border": "color-mix(in srgb, #5b6078 92%, transparent)",
394
+ "color-backdrop": "rgba(13, 14, 20, 0.62)",
395
+ "surface-glass": "color-mix(in srgb, #1e2030 62%, #24273a)",
396
+ "surface-line": "color-mix(in srgb, #5b6078 72%, #24273a)",
397
+ "brand-violet": "#f5bde6",
398
+ "brand-cyan": "#8bd5ca",
399
+ "brand-lime": "#a6da95",
400
+ "brand-coral": "#ed8796",
401
+ "brand-navy": "color-mix(in srgb, #cad3f5 70%, #24273a)",
402
+ "brand-violet-rgb": "245, 189, 230",
403
+ "brand-cyan-rgb": "139, 213, 202",
404
+ "brand-lime-rgb": "166, 218, 149",
405
+ "brand-coral-rgb": "237, 135, 150",
406
+ "accent-a": "#8aadf4",
407
+ "accent-b": "#f5bde6",
408
+ "accent-c": "#8bd5ca",
409
+ "accent-warm": "#eed49f",
410
+ "accent-cool": "#8aadf4",
411
+ "accent-a-ink": "#8aadf4",
412
+ "accent-b-ink": "#f5bde6",
413
+ "accent-c-ink": "#8bd5ca",
414
+ "accent-warm-ink": "#eed49f",
415
+ "accent-cool-ink": "#8aadf4",
416
+ "accent-coral-ink": "#ed8796",
417
+ "syntax-foreground": "#cad3f5",
418
+ "syntax-background": "#24273a",
419
+ "syntax-token-comment": "#939ab7",
420
+ "syntax-token-punctuation": "#939ab7",
421
+ "syntax-token-keyword": "#c6a0f6",
422
+ "syntax-token-string": "#a6da95",
423
+ "syntax-token-string-expression": "#a6da95",
424
+ "syntax-token-constant": "#f5a97f",
425
+ "syntax-token-function": "#8aadf4",
426
+ "syntax-token-parameter": "#ee99a0",
427
+ "syntax-token-link": "#b7bdf8"
428
+ }
429
+ };
430
+ //#endregion
147
431
  exports.catppuccin = catppuccin;
432
+ exports.catppuccinFrappe = catppuccinFrappe;
433
+ exports.catppuccinMacchiato = catppuccinMacchiato;
148
434
  exports.default = catppuccin;
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/catppuccin.d.ts
3
3
  /**
4
4
  * Catppuccin — Catppuccin Latte and Mocha.
5
5
  *
@@ -11,5 +11,29 @@ import { ThemeConfig } from "@ox-content/vite-plugin";
11
11
  */
12
12
  declare const catppuccin: ThemeConfig;
13
13
  //#endregion
14
- export { catppuccin, catppuccin as default };
14
+ //#region src/catppuccinFrappe.d.ts
15
+ /**
16
+ * Catppuccin — Catppuccin Latte and Frappé.
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 catppuccinFrappe: ThemeConfig;
25
+ //#endregion
26
+ //#region src/catppuccinMacchiato.d.ts
27
+ /**
28
+ * Catppuccin — Catppuccin Latte and Macchiato.
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 catppuccinMacchiato: ThemeConfig;
37
+ //#endregion
38
+ export { catppuccin, catppuccin as default, catppuccinFrappe, catppuccinMacchiato };
15
39
  //# sourceMappingURL=index.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,YAAY"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/catppuccin.ts","../src/catppuccinFrappe.ts","../src/catppuccinMacchiato.ts"],"mappings":";;;;;;;;;;;cAWa,YAAY;;;;;;;;;;;;cCAZ,kBAAkB;;;;;;;;;;;;cCAlB,qBAAqB"}
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/catppuccin.d.ts
3
3
  /**
4
4
  * Catppuccin — Catppuccin Latte and Mocha.
5
5
  *
@@ -11,5 +11,29 @@ import { ThemeConfig } from "@ox-content/vite-plugin";
11
11
  */
12
12
  declare const catppuccin: ThemeConfig;
13
13
  //#endregion
14
- export { catppuccin, catppuccin as default };
14
+ //#region src/catppuccinFrappe.d.ts
15
+ /**
16
+ * Catppuccin — Catppuccin Latte and Frappé.
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 catppuccinFrappe: ThemeConfig;
25
+ //#endregion
26
+ //#region src/catppuccinMacchiato.d.ts
27
+ /**
28
+ * Catppuccin — Catppuccin Latte and Macchiato.
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 catppuccinMacchiato: ThemeConfig;
37
+ //#endregion
38
+ export { catppuccin, catppuccin as default, catppuccinFrappe, catppuccinMacchiato };
15
39
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,YAAY"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/catppuccin.ts","../src/catppuccinFrappe.ts","../src/catppuccinMacchiato.ts"],"mappings":";;;;;;;;;;;cAWa,YAAY;;;;;;;;;;;;cCAZ,kBAAkB;;;;;;;;;;;;cCAlB,qBAAqB"}
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- //#region src/index.ts
1
+ //#region src/catppuccin.ts
2
2
  /**
3
3
  * Catppuccin — Catppuccin Latte and Mocha.
4
4
  *
@@ -140,6 +140,290 @@ const catppuccin = {
140
140
  }
141
141
  };
142
142
  //#endregion
143
- export { catppuccin, catppuccin as default };
143
+ //#region src/catppuccinFrappe.ts
144
+ /**
145
+ * Catppuccin — Catppuccin Latte and Frappé.
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 catppuccinFrappe = {
154
+ name: "catppuccin-frappe",
155
+ colors: {
156
+ primary: "#1d62eb",
157
+ primaryHover: "#114ac7",
158
+ background: "#eff1f5",
159
+ backgroundAlt: "#e6e9ef",
160
+ text: "#4c4f69",
161
+ textMuted: "#686b80",
162
+ border: "#ccd0da",
163
+ codeBackground: "#e6e9ef",
164
+ codeBackgroundTop: "#e6e9ef",
165
+ codeText: "#4c4f69"
166
+ },
167
+ darkColors: {
168
+ primary: "#8caaee",
169
+ primaryHover: "#99d1db",
170
+ background: "#303446",
171
+ backgroundAlt: "#292c3c",
172
+ text: "#c6d0f5",
173
+ textMuted: "#949cbb",
174
+ border: "#626880",
175
+ codeBackground: "#303446",
176
+ codeBackgroundTop: "#303446",
177
+ codeText: "#c6d0f5"
178
+ },
179
+ tokens: {
180
+ "color-code-line-highlight": "color-mix(in srgb, #1e66f5 16%, transparent)",
181
+ "color-code-line-warning": "color-mix(in srgb, #df8e1d 18%, transparent)",
182
+ "color-code-line-warning-border": "#df8e1d",
183
+ "color-code-line-error": "color-mix(in srgb, #d20f39 20%, transparent)",
184
+ "color-code-line-error-border": "#d20f39",
185
+ "color-code-line-add": "color-mix(in srgb, #40a02b 16%, transparent)",
186
+ "color-code-line-add-border": "#40a02b",
187
+ "color-code-line-remove": "color-mix(in srgb, #d20f39 14%, transparent)",
188
+ "color-code-line-remove-border": "#d20f39",
189
+ "color-code-line-focus": "color-mix(in srgb, #1d62eb 16%, transparent)",
190
+ "color-code-line-dim": "0.45",
191
+ "color-code-title-bg": "color-mix(in srgb, #e6e9ef 92%, #4c4f69)",
192
+ "color-code-title-text": "color-mix(in srgb, #4c4f69 88%, #e6e9ef)",
193
+ "color-code-title-border": "color-mix(in srgb, #4c4f69 22%, transparent)",
194
+ "color-code-line-number": "color-mix(in srgb, #4c4f69 48%, transparent)",
195
+ "color-code-frame-border": "color-mix(in srgb, #ccd0da 92%, transparent)",
196
+ "color-backdrop": "rgba(84, 84, 86, 0.62)",
197
+ "surface-glass": "color-mix(in srgb, #e6e9ef 62%, #eff1f5)",
198
+ "surface-line": "color-mix(in srgb, #ccd0da 72%, #eff1f5)",
199
+ "brand-violet": "#8839ef",
200
+ "brand-cyan": "#179299",
201
+ "brand-lime": "#40a02b",
202
+ "brand-coral": "#d20f39",
203
+ "brand-navy": "color-mix(in srgb, #4c4f69 70%, #eff1f5)",
204
+ "brand-violet-rgb": "136, 57, 239",
205
+ "brand-cyan-rgb": "23, 146, 153",
206
+ "brand-lime-rgb": "64, 160, 43",
207
+ "brand-coral-rgb": "210, 15, 57",
208
+ "accent-a": "#1d62eb",
209
+ "accent-b": "#8839ef",
210
+ "accent-c": "#179299",
211
+ "accent-warm": "#df8e1d",
212
+ "accent-cool": "#1e66f5",
213
+ "accent-a-ink": "#1d62eb",
214
+ "accent-b-ink": "#8839ef",
215
+ "accent-c-ink": "#12757a",
216
+ "accent-warm-ink": "#986114",
217
+ "accent-cool-ink": "#1d62eb",
218
+ "accent-coral-ink": "#d20f39",
219
+ "syntax-foreground": "#4c4f69",
220
+ "syntax-background": "#e6e9ef",
221
+ "syntax-token-comment": "color-mix(in srgb, #4c4f69 55%, #e6e9ef)",
222
+ "syntax-token-punctuation": "color-mix(in srgb, #4c4f69 72%, #e6e9ef)",
223
+ "syntax-token-keyword": "#8839ef",
224
+ "syntax-token-string": "#40a02b",
225
+ "syntax-token-string-expression": "#40a02b",
226
+ "syntax-token-constant": "#df8e1d",
227
+ "syntax-token-function": "#1e66f5",
228
+ "syntax-token-parameter": "#d20f39",
229
+ "syntax-token-link": "#179299"
230
+ },
231
+ darkTokens: {
232
+ "color-code-line-highlight": "color-mix(in srgb, #8caaee 16%, transparent)",
233
+ "color-code-line-warning": "color-mix(in srgb, #e5c890 18%, transparent)",
234
+ "color-code-line-warning-border": "#e5c890",
235
+ "color-code-line-error": "color-mix(in srgb, #e78284 20%, transparent)",
236
+ "color-code-line-error-border": "#e78284",
237
+ "color-code-line-add": "color-mix(in srgb, #a6d189 16%, transparent)",
238
+ "color-code-line-add-border": "#a6d189",
239
+ "color-code-line-remove": "color-mix(in srgb, #e78284 14%, transparent)",
240
+ "color-code-line-remove-border": "#e78284",
241
+ "color-code-line-focus": "color-mix(in srgb, #8caaee 16%, transparent)",
242
+ "color-code-line-dim": "0.35",
243
+ "color-code-title-bg": "color-mix(in srgb, #303446 92%, #c6d0f5)",
244
+ "color-code-title-text": "color-mix(in srgb, #c6d0f5 88%, #303446)",
245
+ "color-code-title-border": "color-mix(in srgb, #c6d0f5 22%, transparent)",
246
+ "color-code-line-number": "color-mix(in srgb, #c6d0f5 48%, transparent)",
247
+ "color-code-frame-border": "color-mix(in srgb, #626880 92%, transparent)",
248
+ "color-backdrop": "rgba(17, 18, 25, 0.62)",
249
+ "surface-glass": "color-mix(in srgb, #292c3c 62%, #303446)",
250
+ "surface-line": "color-mix(in srgb, #626880 72%, #303446)",
251
+ "brand-violet": "#f4b8e4",
252
+ "brand-cyan": "#81c8be",
253
+ "brand-lime": "#a6d189",
254
+ "brand-coral": "#e78284",
255
+ "brand-navy": "color-mix(in srgb, #c6d0f5 70%, #303446)",
256
+ "brand-violet-rgb": "244, 184, 228",
257
+ "brand-cyan-rgb": "129, 200, 190",
258
+ "brand-lime-rgb": "166, 209, 137",
259
+ "brand-coral-rgb": "231, 130, 132",
260
+ "accent-a": "#8caaee",
261
+ "accent-b": "#f4b8e4",
262
+ "accent-c": "#81c8be",
263
+ "accent-warm": "#e5c890",
264
+ "accent-cool": "#8caaee",
265
+ "accent-a-ink": "#8caaee",
266
+ "accent-b-ink": "#f4b8e4",
267
+ "accent-c-ink": "#81c8be",
268
+ "accent-warm-ink": "#e5c890",
269
+ "accent-cool-ink": "#8caaee",
270
+ "accent-coral-ink": "#e78284",
271
+ "syntax-foreground": "#c6d0f5",
272
+ "syntax-background": "#303446",
273
+ "syntax-token-comment": "#949cbb",
274
+ "syntax-token-punctuation": "#949cbb",
275
+ "syntax-token-keyword": "#ca9ee6",
276
+ "syntax-token-string": "#a6d189",
277
+ "syntax-token-string-expression": "#a6d189",
278
+ "syntax-token-constant": "#ef9f76",
279
+ "syntax-token-function": "#8caaee",
280
+ "syntax-token-parameter": "#ea999c",
281
+ "syntax-token-link": "#babbf1"
282
+ }
283
+ };
284
+ //#endregion
285
+ //#region src/catppuccinMacchiato.ts
286
+ /**
287
+ * Catppuccin — Catppuccin Latte and Macchiato.
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 catppuccinMacchiato = {
296
+ name: "catppuccin-macchiato",
297
+ colors: {
298
+ primary: "#1d62eb",
299
+ primaryHover: "#114ac7",
300
+ background: "#eff1f5",
301
+ backgroundAlt: "#e6e9ef",
302
+ text: "#4c4f69",
303
+ textMuted: "#686b80",
304
+ border: "#ccd0da",
305
+ codeBackground: "#e6e9ef",
306
+ codeBackgroundTop: "#e6e9ef",
307
+ codeText: "#4c4f69"
308
+ },
309
+ darkColors: {
310
+ primary: "#8aadf4",
311
+ primaryHover: "#91d7e3",
312
+ background: "#24273a",
313
+ backgroundAlt: "#1e2030",
314
+ text: "#cad3f5",
315
+ textMuted: "#939ab7",
316
+ border: "#5b6078",
317
+ codeBackground: "#24273a",
318
+ codeBackgroundTop: "#24273a",
319
+ codeText: "#cad3f5"
320
+ },
321
+ tokens: {
322
+ "color-code-line-highlight": "color-mix(in srgb, #1e66f5 16%, transparent)",
323
+ "color-code-line-warning": "color-mix(in srgb, #df8e1d 18%, transparent)",
324
+ "color-code-line-warning-border": "#df8e1d",
325
+ "color-code-line-error": "color-mix(in srgb, #d20f39 20%, transparent)",
326
+ "color-code-line-error-border": "#d20f39",
327
+ "color-code-line-add": "color-mix(in srgb, #40a02b 16%, transparent)",
328
+ "color-code-line-add-border": "#40a02b",
329
+ "color-code-line-remove": "color-mix(in srgb, #d20f39 14%, transparent)",
330
+ "color-code-line-remove-border": "#d20f39",
331
+ "color-code-line-focus": "color-mix(in srgb, #1d62eb 16%, transparent)",
332
+ "color-code-line-dim": "0.45",
333
+ "color-code-title-bg": "color-mix(in srgb, #e6e9ef 92%, #4c4f69)",
334
+ "color-code-title-text": "color-mix(in srgb, #4c4f69 88%, #e6e9ef)",
335
+ "color-code-title-border": "color-mix(in srgb, #4c4f69 22%, transparent)",
336
+ "color-code-line-number": "color-mix(in srgb, #4c4f69 48%, transparent)",
337
+ "color-code-frame-border": "color-mix(in srgb, #ccd0da 92%, transparent)",
338
+ "color-backdrop": "rgba(84, 84, 86, 0.62)",
339
+ "surface-glass": "color-mix(in srgb, #e6e9ef 62%, #eff1f5)",
340
+ "surface-line": "color-mix(in srgb, #ccd0da 72%, #eff1f5)",
341
+ "brand-violet": "#8839ef",
342
+ "brand-cyan": "#179299",
343
+ "brand-lime": "#40a02b",
344
+ "brand-coral": "#d20f39",
345
+ "brand-navy": "color-mix(in srgb, #4c4f69 70%, #eff1f5)",
346
+ "brand-violet-rgb": "136, 57, 239",
347
+ "brand-cyan-rgb": "23, 146, 153",
348
+ "brand-lime-rgb": "64, 160, 43",
349
+ "brand-coral-rgb": "210, 15, 57",
350
+ "accent-a": "#1d62eb",
351
+ "accent-b": "#8839ef",
352
+ "accent-c": "#179299",
353
+ "accent-warm": "#df8e1d",
354
+ "accent-cool": "#1e66f5",
355
+ "accent-a-ink": "#1d62eb",
356
+ "accent-b-ink": "#8839ef",
357
+ "accent-c-ink": "#12757a",
358
+ "accent-warm-ink": "#986114",
359
+ "accent-cool-ink": "#1d62eb",
360
+ "accent-coral-ink": "#d20f39",
361
+ "syntax-foreground": "#4c4f69",
362
+ "syntax-background": "#e6e9ef",
363
+ "syntax-token-comment": "color-mix(in srgb, #4c4f69 55%, #e6e9ef)",
364
+ "syntax-token-punctuation": "color-mix(in srgb, #4c4f69 72%, #e6e9ef)",
365
+ "syntax-token-keyword": "#8839ef",
366
+ "syntax-token-string": "#40a02b",
367
+ "syntax-token-string-expression": "#40a02b",
368
+ "syntax-token-constant": "#df8e1d",
369
+ "syntax-token-function": "#1e66f5",
370
+ "syntax-token-parameter": "#d20f39",
371
+ "syntax-token-link": "#179299"
372
+ },
373
+ darkTokens: {
374
+ "color-code-line-highlight": "color-mix(in srgb, #8aadf4 16%, transparent)",
375
+ "color-code-line-warning": "color-mix(in srgb, #eed49f 18%, transparent)",
376
+ "color-code-line-warning-border": "#eed49f",
377
+ "color-code-line-error": "color-mix(in srgb, #ed8796 20%, transparent)",
378
+ "color-code-line-error-border": "#ed8796",
379
+ "color-code-line-add": "color-mix(in srgb, #a6da95 16%, transparent)",
380
+ "color-code-line-add-border": "#a6da95",
381
+ "color-code-line-remove": "color-mix(in srgb, #ed8796 14%, transparent)",
382
+ "color-code-line-remove-border": "#ed8796",
383
+ "color-code-line-focus": "color-mix(in srgb, #8aadf4 16%, transparent)",
384
+ "color-code-line-dim": "0.35",
385
+ "color-code-title-bg": "color-mix(in srgb, #24273a 92%, #cad3f5)",
386
+ "color-code-title-text": "color-mix(in srgb, #cad3f5 88%, #24273a)",
387
+ "color-code-title-border": "color-mix(in srgb, #cad3f5 22%, transparent)",
388
+ "color-code-line-number": "color-mix(in srgb, #cad3f5 48%, transparent)",
389
+ "color-code-frame-border": "color-mix(in srgb, #5b6078 92%, transparent)",
390
+ "color-backdrop": "rgba(13, 14, 20, 0.62)",
391
+ "surface-glass": "color-mix(in srgb, #1e2030 62%, #24273a)",
392
+ "surface-line": "color-mix(in srgb, #5b6078 72%, #24273a)",
393
+ "brand-violet": "#f5bde6",
394
+ "brand-cyan": "#8bd5ca",
395
+ "brand-lime": "#a6da95",
396
+ "brand-coral": "#ed8796",
397
+ "brand-navy": "color-mix(in srgb, #cad3f5 70%, #24273a)",
398
+ "brand-violet-rgb": "245, 189, 230",
399
+ "brand-cyan-rgb": "139, 213, 202",
400
+ "brand-lime-rgb": "166, 218, 149",
401
+ "brand-coral-rgb": "237, 135, 150",
402
+ "accent-a": "#8aadf4",
403
+ "accent-b": "#f5bde6",
404
+ "accent-c": "#8bd5ca",
405
+ "accent-warm": "#eed49f",
406
+ "accent-cool": "#8aadf4",
407
+ "accent-a-ink": "#8aadf4",
408
+ "accent-b-ink": "#f5bde6",
409
+ "accent-c-ink": "#8bd5ca",
410
+ "accent-warm-ink": "#eed49f",
411
+ "accent-cool-ink": "#8aadf4",
412
+ "accent-coral-ink": "#ed8796",
413
+ "syntax-foreground": "#cad3f5",
414
+ "syntax-background": "#24273a",
415
+ "syntax-token-comment": "#939ab7",
416
+ "syntax-token-punctuation": "#939ab7",
417
+ "syntax-token-keyword": "#c6a0f6",
418
+ "syntax-token-string": "#a6da95",
419
+ "syntax-token-string-expression": "#a6da95",
420
+ "syntax-token-constant": "#f5a97f",
421
+ "syntax-token-function": "#8aadf4",
422
+ "syntax-token-parameter": "#ee99a0",
423
+ "syntax-token-link": "#b7bdf8"
424
+ }
425
+ };
426
+ //#endregion
427
+ export { catppuccin, catppuccin as default, catppuccinFrappe, catppuccinMacchiato };
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 * Catppuccin — Catppuccin Latte and Mocha.\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 catppuccin: ThemeConfig = {\n name: \"catppuccin\",\n colors: {\n primary: \"#1d62eb\",\n primaryHover: \"#114ac7\",\n background: \"#eff1f5\",\n backgroundAlt: \"#e6e9ef\",\n text: \"#4c4f69\",\n textMuted: \"#686b80\",\n border: \"#ccd0da\",\n codeBackground: \"#e6e9ef\",\n codeBackgroundTop: \"#e6e9ef\",\n codeText: \"#4c4f69\",\n },\n darkColors: {\n primary: \"#89b4fa\",\n primaryHover: \"#b4d0fd\",\n background: \"#1e1e2e\",\n backgroundAlt: \"#181825\",\n text: \"#cdd6f4\",\n textMuted: \"#a6adc8\",\n border: \"#313244\",\n codeBackground: \"#11111b\",\n codeBackgroundTop: \"#11111b\",\n codeText: \"#cdd6f4\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #1e66f5 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #df8e1d 18%, transparent)\",\n \"color-code-line-warning-border\": \"#df8e1d\",\n \"color-code-line-error\": \"color-mix(in srgb, #d20f39 20%, transparent)\",\n \"color-code-line-error-border\": \"#d20f39\",\n \"color-code-line-add\": \"color-mix(in srgb, #40a02b 16%, transparent)\",\n \"color-code-line-add-border\": \"#40a02b\",\n \"color-code-line-remove\": \"color-mix(in srgb, #d20f39 14%, transparent)\",\n \"color-code-line-remove-border\": \"#d20f39\",\n \"color-code-line-focus\": \"color-mix(in srgb, #1d62eb 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #e6e9ef 92%, #4c4f69)\",\n \"color-code-title-text\": \"color-mix(in srgb, #4c4f69 88%, #e6e9ef)\",\n \"color-code-title-border\": \"color-mix(in srgb, #4c4f69 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #4c4f69 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ccd0da 92%, transparent)\",\n \"color-backdrop\": \"rgba(84, 84, 86, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #e6e9ef 62%, #eff1f5)\",\n \"surface-line\": \"color-mix(in srgb, #ccd0da 72%, #eff1f5)\",\n \"brand-violet\": \"#8839ef\",\n \"brand-cyan\": \"#179299\",\n \"brand-lime\": \"#40a02b\",\n \"brand-coral\": \"#d20f39\",\n \"brand-navy\": \"color-mix(in srgb, #4c4f69 70%, #eff1f5)\",\n \"brand-violet-rgb\": \"136, 57, 239\",\n \"brand-cyan-rgb\": \"23, 146, 153\",\n \"brand-lime-rgb\": \"64, 160, 43\",\n \"brand-coral-rgb\": \"210, 15, 57\",\n \"accent-a\": \"#1d62eb\",\n \"accent-b\": \"#8839ef\",\n \"accent-c\": \"#179299\",\n \"accent-warm\": \"#df8e1d\",\n \"accent-cool\": \"#1e66f5\",\n \"accent-a-ink\": \"#1d62eb\",\n \"accent-b-ink\": \"#8839ef\",\n \"accent-c-ink\": \"#12757a\",\n \"accent-warm-ink\": \"#986114\",\n \"accent-cool-ink\": \"#1d62eb\",\n \"accent-coral-ink\": \"#d20f39\",\n \"syntax-foreground\": \"#4c4f69\",\n \"syntax-background\": \"#e6e9ef\",\n \"syntax-token-comment\": \"color-mix(in srgb, #4c4f69 55%, #e6e9ef)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #4c4f69 72%, #e6e9ef)\",\n \"syntax-token-keyword\": \"#8839ef\",\n \"syntax-token-string\": \"#40a02b\",\n \"syntax-token-string-expression\": \"#40a02b\",\n \"syntax-token-constant\": \"#df8e1d\",\n \"syntax-token-function\": \"#1e66f5\",\n \"syntax-token-parameter\": \"#d20f39\",\n \"syntax-token-link\": \"#179299\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #89b4fa 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #f9e2af 18%, transparent)\",\n \"color-code-line-warning-border\": \"#f9e2af\",\n \"color-code-line-error\": \"color-mix(in srgb, #f38ba8 20%, transparent)\",\n \"color-code-line-error-border\": \"#f38ba8\",\n \"color-code-line-add\": \"color-mix(in srgb, #a6e3a1 16%, transparent)\",\n \"color-code-line-add-border\": \"#a6e3a1\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f38ba8 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f38ba8\",\n \"color-code-line-focus\": \"color-mix(in srgb, #89b4fa 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #11111b 92%, #cdd6f4)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cdd6f4 88%, #11111b)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cdd6f4 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cdd6f4 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #313244 92%, transparent)\",\n \"color-backdrop\": \"rgba(11, 11, 16, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #181825 62%, #1e1e2e)\",\n \"surface-line\": \"color-mix(in srgb, #313244 72%, #1e1e2e)\",\n \"brand-violet\": \"#cba6f7\",\n \"brand-cyan\": \"#94e2d5\",\n \"brand-lime\": \"#a6e3a1\",\n \"brand-coral\": \"#f38ba8\",\n \"brand-navy\": \"color-mix(in srgb, #cdd6f4 70%, #1e1e2e)\",\n \"brand-violet-rgb\": \"203, 166, 247\",\n \"brand-cyan-rgb\": \"148, 226, 213\",\n \"brand-lime-rgb\": \"166, 227, 161\",\n \"brand-coral-rgb\": \"243, 139, 168\",\n \"accent-a\": \"#89b4fa\",\n \"accent-b\": \"#cba6f7\",\n \"accent-c\": \"#94e2d5\",\n \"accent-warm\": \"#f9e2af\",\n \"accent-cool\": \"#89b4fa\",\n \"accent-a-ink\": \"#89b4fa\",\n \"accent-b-ink\": \"#cba6f7\",\n \"accent-c-ink\": \"#94e2d5\",\n \"accent-warm-ink\": \"#f9e2af\",\n \"accent-cool-ink\": \"#89b4fa\",\n \"accent-coral-ink\": \"#f38ba8\",\n \"syntax-foreground\": \"#cdd6f4\",\n \"syntax-background\": \"#11111b\",\n \"syntax-token-comment\": \"color-mix(in srgb, #cdd6f4 55%, #11111b)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #cdd6f4 72%, #11111b)\",\n \"syntax-token-keyword\": \"#cba6f7\",\n \"syntax-token-string\": \"#a6e3a1\",\n \"syntax-token-string-expression\": \"#a6e3a1\",\n \"syntax-token-constant\": \"#f9e2af\",\n \"syntax-token-function\": \"#89b4fa\",\n \"syntax-token-parameter\": \"#f38ba8\",\n \"syntax-token-link\": \"#94e2d5\",\n },\n};\n\nexport default catppuccin;\n"],"mappings":";;;;;;;;;;AAWA,MAAa,aAA0B;CACrC,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/catppuccin.ts","../src/catppuccinFrappe.ts","../src/catppuccinMacchiato.ts"],"sourcesContent":["import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Catppuccin — Catppuccin Latte and Mocha.\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 catppuccin: ThemeConfig = {\n name: \"catppuccin\",\n colors: {\n primary: \"#1d62eb\",\n primaryHover: \"#114ac7\",\n background: \"#eff1f5\",\n backgroundAlt: \"#e6e9ef\",\n text: \"#4c4f69\",\n textMuted: \"#686b80\",\n border: \"#ccd0da\",\n codeBackground: \"#e6e9ef\",\n codeBackgroundTop: \"#e6e9ef\",\n codeText: \"#4c4f69\",\n },\n darkColors: {\n primary: \"#89b4fa\",\n primaryHover: \"#b4d0fd\",\n background: \"#1e1e2e\",\n backgroundAlt: \"#181825\",\n text: \"#cdd6f4\",\n textMuted: \"#a6adc8\",\n border: \"#313244\",\n codeBackground: \"#11111b\",\n codeBackgroundTop: \"#11111b\",\n codeText: \"#cdd6f4\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #1e66f5 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #df8e1d 18%, transparent)\",\n \"color-code-line-warning-border\": \"#df8e1d\",\n \"color-code-line-error\": \"color-mix(in srgb, #d20f39 20%, transparent)\",\n \"color-code-line-error-border\": \"#d20f39\",\n \"color-code-line-add\": \"color-mix(in srgb, #40a02b 16%, transparent)\",\n \"color-code-line-add-border\": \"#40a02b\",\n \"color-code-line-remove\": \"color-mix(in srgb, #d20f39 14%, transparent)\",\n \"color-code-line-remove-border\": \"#d20f39\",\n \"color-code-line-focus\": \"color-mix(in srgb, #1d62eb 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #e6e9ef 92%, #4c4f69)\",\n \"color-code-title-text\": \"color-mix(in srgb, #4c4f69 88%, #e6e9ef)\",\n \"color-code-title-border\": \"color-mix(in srgb, #4c4f69 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #4c4f69 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ccd0da 92%, transparent)\",\n \"color-backdrop\": \"rgba(84, 84, 86, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #e6e9ef 62%, #eff1f5)\",\n \"surface-line\": \"color-mix(in srgb, #ccd0da 72%, #eff1f5)\",\n \"brand-violet\": \"#8839ef\",\n \"brand-cyan\": \"#179299\",\n \"brand-lime\": \"#40a02b\",\n \"brand-coral\": \"#d20f39\",\n \"brand-navy\": \"color-mix(in srgb, #4c4f69 70%, #eff1f5)\",\n \"brand-violet-rgb\": \"136, 57, 239\",\n \"brand-cyan-rgb\": \"23, 146, 153\",\n \"brand-lime-rgb\": \"64, 160, 43\",\n \"brand-coral-rgb\": \"210, 15, 57\",\n \"accent-a\": \"#1d62eb\",\n \"accent-b\": \"#8839ef\",\n \"accent-c\": \"#179299\",\n \"accent-warm\": \"#df8e1d\",\n \"accent-cool\": \"#1e66f5\",\n \"accent-a-ink\": \"#1d62eb\",\n \"accent-b-ink\": \"#8839ef\",\n \"accent-c-ink\": \"#12757a\",\n \"accent-warm-ink\": \"#986114\",\n \"accent-cool-ink\": \"#1d62eb\",\n \"accent-coral-ink\": \"#d20f39\",\n \"syntax-foreground\": \"#4c4f69\",\n \"syntax-background\": \"#e6e9ef\",\n \"syntax-token-comment\": \"color-mix(in srgb, #4c4f69 55%, #e6e9ef)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #4c4f69 72%, #e6e9ef)\",\n \"syntax-token-keyword\": \"#8839ef\",\n \"syntax-token-string\": \"#40a02b\",\n \"syntax-token-string-expression\": \"#40a02b\",\n \"syntax-token-constant\": \"#df8e1d\",\n \"syntax-token-function\": \"#1e66f5\",\n \"syntax-token-parameter\": \"#d20f39\",\n \"syntax-token-link\": \"#179299\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #89b4fa 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #f9e2af 18%, transparent)\",\n \"color-code-line-warning-border\": \"#f9e2af\",\n \"color-code-line-error\": \"color-mix(in srgb, #f38ba8 20%, transparent)\",\n \"color-code-line-error-border\": \"#f38ba8\",\n \"color-code-line-add\": \"color-mix(in srgb, #a6e3a1 16%, transparent)\",\n \"color-code-line-add-border\": \"#a6e3a1\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f38ba8 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f38ba8\",\n \"color-code-line-focus\": \"color-mix(in srgb, #89b4fa 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #11111b 92%, #cdd6f4)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cdd6f4 88%, #11111b)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cdd6f4 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cdd6f4 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #313244 92%, transparent)\",\n \"color-backdrop\": \"rgba(11, 11, 16, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #181825 62%, #1e1e2e)\",\n \"surface-line\": \"color-mix(in srgb, #313244 72%, #1e1e2e)\",\n \"brand-violet\": \"#cba6f7\",\n \"brand-cyan\": \"#94e2d5\",\n \"brand-lime\": \"#a6e3a1\",\n \"brand-coral\": \"#f38ba8\",\n \"brand-navy\": \"color-mix(in srgb, #cdd6f4 70%, #1e1e2e)\",\n \"brand-violet-rgb\": \"203, 166, 247\",\n \"brand-cyan-rgb\": \"148, 226, 213\",\n \"brand-lime-rgb\": \"166, 227, 161\",\n \"brand-coral-rgb\": \"243, 139, 168\",\n \"accent-a\": \"#89b4fa\",\n \"accent-b\": \"#cba6f7\",\n \"accent-c\": \"#94e2d5\",\n \"accent-warm\": \"#f9e2af\",\n \"accent-cool\": \"#89b4fa\",\n \"accent-a-ink\": \"#89b4fa\",\n \"accent-b-ink\": \"#cba6f7\",\n \"accent-c-ink\": \"#94e2d5\",\n \"accent-warm-ink\": \"#f9e2af\",\n \"accent-cool-ink\": \"#89b4fa\",\n \"accent-coral-ink\": \"#f38ba8\",\n \"syntax-foreground\": \"#cdd6f4\",\n \"syntax-background\": \"#11111b\",\n \"syntax-token-comment\": \"color-mix(in srgb, #cdd6f4 55%, #11111b)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #cdd6f4 72%, #11111b)\",\n \"syntax-token-keyword\": \"#cba6f7\",\n \"syntax-token-string\": \"#a6e3a1\",\n \"syntax-token-string-expression\": \"#a6e3a1\",\n \"syntax-token-constant\": \"#f9e2af\",\n \"syntax-token-function\": \"#89b4fa\",\n \"syntax-token-parameter\": \"#f38ba8\",\n \"syntax-token-link\": \"#94e2d5\",\n },\n};\n","import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Catppuccin — Catppuccin Latte and Frappé.\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 catppuccinFrappe: ThemeConfig = {\n name: \"catppuccin-frappe\",\n colors: {\n primary: \"#1d62eb\",\n primaryHover: \"#114ac7\",\n background: \"#eff1f5\",\n backgroundAlt: \"#e6e9ef\",\n text: \"#4c4f69\",\n textMuted: \"#686b80\",\n border: \"#ccd0da\",\n codeBackground: \"#e6e9ef\",\n codeBackgroundTop: \"#e6e9ef\",\n codeText: \"#4c4f69\",\n },\n darkColors: {\n primary: \"#8caaee\",\n primaryHover: \"#99d1db\",\n background: \"#303446\",\n backgroundAlt: \"#292c3c\",\n text: \"#c6d0f5\",\n textMuted: \"#949cbb\",\n border: \"#626880\",\n codeBackground: \"#303446\",\n codeBackgroundTop: \"#303446\",\n codeText: \"#c6d0f5\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #1e66f5 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #df8e1d 18%, transparent)\",\n \"color-code-line-warning-border\": \"#df8e1d\",\n \"color-code-line-error\": \"color-mix(in srgb, #d20f39 20%, transparent)\",\n \"color-code-line-error-border\": \"#d20f39\",\n \"color-code-line-add\": \"color-mix(in srgb, #40a02b 16%, transparent)\",\n \"color-code-line-add-border\": \"#40a02b\",\n \"color-code-line-remove\": \"color-mix(in srgb, #d20f39 14%, transparent)\",\n \"color-code-line-remove-border\": \"#d20f39\",\n \"color-code-line-focus\": \"color-mix(in srgb, #1d62eb 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #e6e9ef 92%, #4c4f69)\",\n \"color-code-title-text\": \"color-mix(in srgb, #4c4f69 88%, #e6e9ef)\",\n \"color-code-title-border\": \"color-mix(in srgb, #4c4f69 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #4c4f69 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ccd0da 92%, transparent)\",\n \"color-backdrop\": \"rgba(84, 84, 86, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #e6e9ef 62%, #eff1f5)\",\n \"surface-line\": \"color-mix(in srgb, #ccd0da 72%, #eff1f5)\",\n \"brand-violet\": \"#8839ef\",\n \"brand-cyan\": \"#179299\",\n \"brand-lime\": \"#40a02b\",\n \"brand-coral\": \"#d20f39\",\n \"brand-navy\": \"color-mix(in srgb, #4c4f69 70%, #eff1f5)\",\n \"brand-violet-rgb\": \"136, 57, 239\",\n \"brand-cyan-rgb\": \"23, 146, 153\",\n \"brand-lime-rgb\": \"64, 160, 43\",\n \"brand-coral-rgb\": \"210, 15, 57\",\n \"accent-a\": \"#1d62eb\",\n \"accent-b\": \"#8839ef\",\n \"accent-c\": \"#179299\",\n \"accent-warm\": \"#df8e1d\",\n \"accent-cool\": \"#1e66f5\",\n \"accent-a-ink\": \"#1d62eb\",\n \"accent-b-ink\": \"#8839ef\",\n \"accent-c-ink\": \"#12757a\",\n \"accent-warm-ink\": \"#986114\",\n \"accent-cool-ink\": \"#1d62eb\",\n \"accent-coral-ink\": \"#d20f39\",\n \"syntax-foreground\": \"#4c4f69\",\n \"syntax-background\": \"#e6e9ef\",\n \"syntax-token-comment\": \"color-mix(in srgb, #4c4f69 55%, #e6e9ef)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #4c4f69 72%, #e6e9ef)\",\n \"syntax-token-keyword\": \"#8839ef\",\n \"syntax-token-string\": \"#40a02b\",\n \"syntax-token-string-expression\": \"#40a02b\",\n \"syntax-token-constant\": \"#df8e1d\",\n \"syntax-token-function\": \"#1e66f5\",\n \"syntax-token-parameter\": \"#d20f39\",\n \"syntax-token-link\": \"#179299\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #8caaee 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #e5c890 18%, transparent)\",\n \"color-code-line-warning-border\": \"#e5c890\",\n \"color-code-line-error\": \"color-mix(in srgb, #e78284 20%, transparent)\",\n \"color-code-line-error-border\": \"#e78284\",\n \"color-code-line-add\": \"color-mix(in srgb, #a6d189 16%, transparent)\",\n \"color-code-line-add-border\": \"#a6d189\",\n \"color-code-line-remove\": \"color-mix(in srgb, #e78284 14%, transparent)\",\n \"color-code-line-remove-border\": \"#e78284\",\n \"color-code-line-focus\": \"color-mix(in srgb, #8caaee 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #303446 92%, #c6d0f5)\",\n \"color-code-title-text\": \"color-mix(in srgb, #c6d0f5 88%, #303446)\",\n \"color-code-title-border\": \"color-mix(in srgb, #c6d0f5 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #c6d0f5 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #626880 92%, transparent)\",\n \"color-backdrop\": \"rgba(17, 18, 25, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #292c3c 62%, #303446)\",\n \"surface-line\": \"color-mix(in srgb, #626880 72%, #303446)\",\n \"brand-violet\": \"#f4b8e4\",\n \"brand-cyan\": \"#81c8be\",\n \"brand-lime\": \"#a6d189\",\n \"brand-coral\": \"#e78284\",\n \"brand-navy\": \"color-mix(in srgb, #c6d0f5 70%, #303446)\",\n \"brand-violet-rgb\": \"244, 184, 228\",\n \"brand-cyan-rgb\": \"129, 200, 190\",\n \"brand-lime-rgb\": \"166, 209, 137\",\n \"brand-coral-rgb\": \"231, 130, 132\",\n \"accent-a\": \"#8caaee\",\n \"accent-b\": \"#f4b8e4\",\n \"accent-c\": \"#81c8be\",\n \"accent-warm\": \"#e5c890\",\n \"accent-cool\": \"#8caaee\",\n \"accent-a-ink\": \"#8caaee\",\n \"accent-b-ink\": \"#f4b8e4\",\n \"accent-c-ink\": \"#81c8be\",\n \"accent-warm-ink\": \"#e5c890\",\n \"accent-cool-ink\": \"#8caaee\",\n \"accent-coral-ink\": \"#e78284\",\n \"syntax-foreground\": \"#c6d0f5\",\n \"syntax-background\": \"#303446\",\n \"syntax-token-comment\": \"#949cbb\",\n \"syntax-token-punctuation\": \"#949cbb\",\n \"syntax-token-keyword\": \"#ca9ee6\",\n \"syntax-token-string\": \"#a6d189\",\n \"syntax-token-string-expression\": \"#a6d189\",\n \"syntax-token-constant\": \"#ef9f76\",\n \"syntax-token-function\": \"#8caaee\",\n \"syntax-token-parameter\": \"#ea999c\",\n \"syntax-token-link\": \"#babbf1\",\n },\n};\n","import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Catppuccin — Catppuccin Latte and Macchiato.\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 catppuccinMacchiato: ThemeConfig = {\n name: \"catppuccin-macchiato\",\n colors: {\n primary: \"#1d62eb\",\n primaryHover: \"#114ac7\",\n background: \"#eff1f5\",\n backgroundAlt: \"#e6e9ef\",\n text: \"#4c4f69\",\n textMuted: \"#686b80\",\n border: \"#ccd0da\",\n codeBackground: \"#e6e9ef\",\n codeBackgroundTop: \"#e6e9ef\",\n codeText: \"#4c4f69\",\n },\n darkColors: {\n primary: \"#8aadf4\",\n primaryHover: \"#91d7e3\",\n background: \"#24273a\",\n backgroundAlt: \"#1e2030\",\n text: \"#cad3f5\",\n textMuted: \"#939ab7\",\n border: \"#5b6078\",\n codeBackground: \"#24273a\",\n codeBackgroundTop: \"#24273a\",\n codeText: \"#cad3f5\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #1e66f5 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #df8e1d 18%, transparent)\",\n \"color-code-line-warning-border\": \"#df8e1d\",\n \"color-code-line-error\": \"color-mix(in srgb, #d20f39 20%, transparent)\",\n \"color-code-line-error-border\": \"#d20f39\",\n \"color-code-line-add\": \"color-mix(in srgb, #40a02b 16%, transparent)\",\n \"color-code-line-add-border\": \"#40a02b\",\n \"color-code-line-remove\": \"color-mix(in srgb, #d20f39 14%, transparent)\",\n \"color-code-line-remove-border\": \"#d20f39\",\n \"color-code-line-focus\": \"color-mix(in srgb, #1d62eb 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #e6e9ef 92%, #4c4f69)\",\n \"color-code-title-text\": \"color-mix(in srgb, #4c4f69 88%, #e6e9ef)\",\n \"color-code-title-border\": \"color-mix(in srgb, #4c4f69 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #4c4f69 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #ccd0da 92%, transparent)\",\n \"color-backdrop\": \"rgba(84, 84, 86, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #e6e9ef 62%, #eff1f5)\",\n \"surface-line\": \"color-mix(in srgb, #ccd0da 72%, #eff1f5)\",\n \"brand-violet\": \"#8839ef\",\n \"brand-cyan\": \"#179299\",\n \"brand-lime\": \"#40a02b\",\n \"brand-coral\": \"#d20f39\",\n \"brand-navy\": \"color-mix(in srgb, #4c4f69 70%, #eff1f5)\",\n \"brand-violet-rgb\": \"136, 57, 239\",\n \"brand-cyan-rgb\": \"23, 146, 153\",\n \"brand-lime-rgb\": \"64, 160, 43\",\n \"brand-coral-rgb\": \"210, 15, 57\",\n \"accent-a\": \"#1d62eb\",\n \"accent-b\": \"#8839ef\",\n \"accent-c\": \"#179299\",\n \"accent-warm\": \"#df8e1d\",\n \"accent-cool\": \"#1e66f5\",\n \"accent-a-ink\": \"#1d62eb\",\n \"accent-b-ink\": \"#8839ef\",\n \"accent-c-ink\": \"#12757a\",\n \"accent-warm-ink\": \"#986114\",\n \"accent-cool-ink\": \"#1d62eb\",\n \"accent-coral-ink\": \"#d20f39\",\n \"syntax-foreground\": \"#4c4f69\",\n \"syntax-background\": \"#e6e9ef\",\n \"syntax-token-comment\": \"color-mix(in srgb, #4c4f69 55%, #e6e9ef)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #4c4f69 72%, #e6e9ef)\",\n \"syntax-token-keyword\": \"#8839ef\",\n \"syntax-token-string\": \"#40a02b\",\n \"syntax-token-string-expression\": \"#40a02b\",\n \"syntax-token-constant\": \"#df8e1d\",\n \"syntax-token-function\": \"#1e66f5\",\n \"syntax-token-parameter\": \"#d20f39\",\n \"syntax-token-link\": \"#179299\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #8aadf4 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #eed49f 18%, transparent)\",\n \"color-code-line-warning-border\": \"#eed49f\",\n \"color-code-line-error\": \"color-mix(in srgb, #ed8796 20%, transparent)\",\n \"color-code-line-error-border\": \"#ed8796\",\n \"color-code-line-add\": \"color-mix(in srgb, #a6da95 16%, transparent)\",\n \"color-code-line-add-border\": \"#a6da95\",\n \"color-code-line-remove\": \"color-mix(in srgb, #ed8796 14%, transparent)\",\n \"color-code-line-remove-border\": \"#ed8796\",\n \"color-code-line-focus\": \"color-mix(in srgb, #8aadf4 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #24273a 92%, #cad3f5)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cad3f5 88%, #24273a)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cad3f5 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cad3f5 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #5b6078 92%, transparent)\",\n \"color-backdrop\": \"rgba(13, 14, 20, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #1e2030 62%, #24273a)\",\n \"surface-line\": \"color-mix(in srgb, #5b6078 72%, #24273a)\",\n \"brand-violet\": \"#f5bde6\",\n \"brand-cyan\": \"#8bd5ca\",\n \"brand-lime\": \"#a6da95\",\n \"brand-coral\": \"#ed8796\",\n \"brand-navy\": \"color-mix(in srgb, #cad3f5 70%, #24273a)\",\n \"brand-violet-rgb\": \"245, 189, 230\",\n \"brand-cyan-rgb\": \"139, 213, 202\",\n \"brand-lime-rgb\": \"166, 218, 149\",\n \"brand-coral-rgb\": \"237, 135, 150\",\n \"accent-a\": \"#8aadf4\",\n \"accent-b\": \"#f5bde6\",\n \"accent-c\": \"#8bd5ca\",\n \"accent-warm\": \"#eed49f\",\n \"accent-cool\": \"#8aadf4\",\n \"accent-a-ink\": \"#8aadf4\",\n \"accent-b-ink\": \"#f5bde6\",\n \"accent-c-ink\": \"#8bd5ca\",\n \"accent-warm-ink\": \"#eed49f\",\n \"accent-cool-ink\": \"#8aadf4\",\n \"accent-coral-ink\": \"#ed8796\",\n \"syntax-foreground\": \"#cad3f5\",\n \"syntax-background\": \"#24273a\",\n \"syntax-token-comment\": \"#939ab7\",\n \"syntax-token-punctuation\": \"#939ab7\",\n \"syntax-token-keyword\": \"#c6a0f6\",\n \"syntax-token-string\": \"#a6da95\",\n \"syntax-token-string-expression\": \"#a6da95\",\n \"syntax-token-constant\": \"#f5a97f\",\n \"syntax-token-function\": \"#8aadf4\",\n \"syntax-token-parameter\": \"#ee99a0\",\n \"syntax-token-link\": \"#b7bdf8\",\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-catppuccin",
3
- "version": "3.0.0-alpha.9",
3
+ "version": "3.0.0-beta.1",
4
4
  "description": "Catppuccin Latte and Mocha — an Ox Content color scheme that composes with any @ox-content/theme-* skin",
5
5
  "keywords": [
6
6
  "catppuccin",
@@ -38,11 +38,11 @@
38
38
  "provenance": true
39
39
  },
40
40
  "devDependencies": {
41
+ "@ox-content/vite-plugin": "3.0.0-beta.1",
41
42
  "@types/node": "^26.2.0",
42
43
  "@typescript/native-preview": "^7.0.0-dev.20260707.2",
43
44
  "typescript": "^7.0.2",
44
- "vite-plus": "0.2.9",
45
- "@ox-content/vite-plugin": "3.0.0-alpha.9"
45
+ "vite-plus": "0.3.0"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@ox-content/vite-plugin": ">=3.0.0-alpha.1"