@ox-content/theme-color-ayu 3.0.0-alpha.9 → 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,17 @@ import pixel from "@ox-content/theme-pixel";
34
34
  theme: [pixel, ayu, { colors: { primary: "#ff5f56" } }];
35
35
  ```
36
36
 
37
+ ## Variants
38
+
39
+ The default export stays `ayu` (Ayu Light and Ayu Mirage). Named variants
40
+ are exported from the same package:
41
+
42
+ ```ts
43
+ import { ayuDark } from "@ox-content/theme-color-ayu";
44
+ ```
45
+
46
+ - `ayuDark` — Ayu Light and Ayu Dark
47
+
37
48
  ## License
38
49
 
39
50
  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/ayu.ts
6
6
  /**
7
7
  * Ayu — Ayu Light and Ayu Mirage.
8
8
  *
@@ -144,5 +144,148 @@ const ayu = {
144
144
  }
145
145
  };
146
146
  //#endregion
147
+ //#region src/ayuDark.ts
148
+ /**
149
+ * Ayu — Ayu Light and Ayu Dark.
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 ayuDark = {
158
+ name: "ayu-dark",
159
+ colors: {
160
+ primary: "#a36229",
161
+ primaryHover: "#b65b00",
162
+ background: "#fcfcfc",
163
+ backgroundAlt: "#f3f4f5",
164
+ text: "#5c6166",
165
+ textMuted: "#6e747a",
166
+ border: "#e7e8e9",
167
+ codeBackground: "#f3f4f5",
168
+ codeBackgroundTop: "#f3f4f5",
169
+ codeText: "#5c6166"
170
+ },
171
+ darkColors: {
172
+ primary: "#e6b450",
173
+ primaryHover: "#e6b450",
174
+ background: "#10141c",
175
+ backgroundAlt: "#0d1017",
176
+ text: "#bfbdb6",
177
+ textMuted: "#7b858f",
178
+ border: "#1b1f29",
179
+ codeBackground: "#10141c",
180
+ codeBackgroundTop: "#10141c",
181
+ codeText: "#bfbdb6"
182
+ },
183
+ tokens: {
184
+ "color-code-line-highlight": "color-mix(in srgb, #399ee6 16%, transparent)",
185
+ "color-code-line-warning": "color-mix(in srgb, #f2ae49 18%, transparent)",
186
+ "color-code-line-warning-border": "#f2ae49",
187
+ "color-code-line-error": "color-mix(in srgb, #f07171 20%, transparent)",
188
+ "color-code-line-error-border": "#f07171",
189
+ "color-code-line-add": "color-mix(in srgb, #86b300 16%, transparent)",
190
+ "color-code-line-add-border": "#86b300",
191
+ "color-code-line-remove": "color-mix(in srgb, #f07171 14%, transparent)",
192
+ "color-code-line-remove-border": "#f07171",
193
+ "color-code-line-focus": "color-mix(in srgb, #a36229 16%, transparent)",
194
+ "color-code-line-dim": "0.45",
195
+ "color-code-title-bg": "color-mix(in srgb, #f3f4f5 92%, #5c6166)",
196
+ "color-code-title-text": "color-mix(in srgb, #5c6166 88%, #f3f4f5)",
197
+ "color-code-title-border": "color-mix(in srgb, #5c6166 22%, transparent)",
198
+ "color-code-line-number": "color-mix(in srgb, #5c6166 48%, transparent)",
199
+ "color-code-frame-border": "color-mix(in srgb, #e7e8e9 92%, transparent)",
200
+ "color-backdrop": "rgba(88, 88, 88, 0.62)",
201
+ "surface-glass": "color-mix(in srgb, #f3f4f5 62%, #fcfcfc)",
202
+ "surface-line": "color-mix(in srgb, #e7e8e9 72%, #fcfcfc)",
203
+ "brand-violet": "#a37acc",
204
+ "brand-cyan": "#4cbf99",
205
+ "brand-lime": "#86b300",
206
+ "brand-coral": "#f07171",
207
+ "brand-navy": "color-mix(in srgb, #5c6166 70%, #fcfcfc)",
208
+ "brand-violet-rgb": "163, 122, 204",
209
+ "brand-cyan-rgb": "76, 191, 153",
210
+ "brand-lime-rgb": "134, 179, 0",
211
+ "brand-coral-rgb": "240, 113, 113",
212
+ "accent-a": "#a36229",
213
+ "accent-b": "#a37acc",
214
+ "accent-c": "#4cbf99",
215
+ "accent-warm": "#f2ae49",
216
+ "accent-cool": "#399ee6",
217
+ "accent-a-ink": "#a36229",
218
+ "accent-b-ink": "#8262a3",
219
+ "accent-c-ink": "#348268",
220
+ "accent-warm-ink": "#91682c",
221
+ "accent-cool-ink": "#2b78af",
222
+ "accent-coral-ink": "#b65656",
223
+ "syntax-foreground": "#5c6166",
224
+ "syntax-background": "#f3f4f5",
225
+ "syntax-token-comment": "color-mix(in srgb, #5c6166 55%, #f3f4f5)",
226
+ "syntax-token-punctuation": "color-mix(in srgb, #5c6166 72%, #f3f4f5)",
227
+ "syntax-token-keyword": "#a37acc",
228
+ "syntax-token-string": "#86b300",
229
+ "syntax-token-string-expression": "#86b300",
230
+ "syntax-token-constant": "#f2ae49",
231
+ "syntax-token-function": "#399ee6",
232
+ "syntax-token-parameter": "#f07171",
233
+ "syntax-token-link": "#4cbf99"
234
+ },
235
+ darkTokens: {
236
+ "color-code-line-highlight": "color-mix(in srgb, #4fbfff 16%, transparent)",
237
+ "color-code-line-warning": "color-mix(in srgb, #fdb04c 18%, transparent)",
238
+ "color-code-line-warning-border": "#fdb04c",
239
+ "color-code-line-error": "color-mix(in srgb, #f06b73 20%, transparent)",
240
+ "color-code-line-error-border": "#f06b73",
241
+ "color-code-line-add": "color-mix(in srgb, #70bf56 16%, transparent)",
242
+ "color-code-line-add-border": "#70bf56",
243
+ "color-code-line-remove": "color-mix(in srgb, #f06b73 14%, transparent)",
244
+ "color-code-line-remove-border": "#f06b73",
245
+ "color-code-line-focus": "color-mix(in srgb, #e6b450 16%, transparent)",
246
+ "color-code-line-dim": "0.35",
247
+ "color-code-title-bg": "color-mix(in srgb, #10141c 92%, #bfbdb6)",
248
+ "color-code-title-text": "color-mix(in srgb, #bfbdb6 88%, #10141c)",
249
+ "color-code-title-border": "color-mix(in srgb, #bfbdb6 22%, transparent)",
250
+ "color-code-line-number": "color-mix(in srgb, #bfbdb6 48%, transparent)",
251
+ "color-code-frame-border": "color-mix(in srgb, #1b1f29 92%, transparent)",
252
+ "color-backdrop": "rgba(6, 7, 10, 0.62)",
253
+ "surface-glass": "color-mix(in srgb, #0d1017 62%, #10141c)",
254
+ "surface-line": "color-mix(in srgb, #1b1f29 72%, #10141c)",
255
+ "brand-violet": "#d0a1ff",
256
+ "brand-cyan": "#93e2c8",
257
+ "brand-lime": "#70bf56",
258
+ "brand-coral": "#f06b73",
259
+ "brand-navy": "color-mix(in srgb, #bfbdb6 70%, #10141c)",
260
+ "brand-violet-rgb": "208, 161, 255",
261
+ "brand-cyan-rgb": "147, 226, 200",
262
+ "brand-lime-rgb": "112, 191, 86",
263
+ "brand-coral-rgb": "240, 107, 115",
264
+ "accent-a": "#e6b450",
265
+ "accent-b": "#d0a1ff",
266
+ "accent-c": "#93e2c8",
267
+ "accent-warm": "#fdb04c",
268
+ "accent-cool": "#4fbfff",
269
+ "accent-a-ink": "#e6b450",
270
+ "accent-b-ink": "#d0a1ff",
271
+ "accent-c-ink": "#93e2c8",
272
+ "accent-warm-ink": "#fdb04c",
273
+ "accent-cool-ink": "#4fbfff",
274
+ "accent-coral-ink": "#f06b73",
275
+ "syntax-foreground": "#bfbdb6",
276
+ "syntax-background": "#10141c",
277
+ "syntax-token-comment": "#5a6673",
278
+ "syntax-token-punctuation": "#bfbdb6b3",
279
+ "syntax-token-keyword": "#ff8f40",
280
+ "syntax-token-string": "#aad94c",
281
+ "syntax-token-string-expression": "#aad94c",
282
+ "syntax-token-constant": "#d2a6ff",
283
+ "syntax-token-function": "#ffb454",
284
+ "syntax-token-parameter": "#d2a6ff",
285
+ "syntax-token-link": "#39bae6"
286
+ }
287
+ };
288
+ //#endregion
147
289
  exports.ayu = ayu;
290
+ exports.ayuDark = ayuDark;
148
291
  exports.default = ayu;
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/ayu.d.ts
3
3
  /**
4
4
  * Ayu — Ayu Light and Ayu Mirage.
5
5
  *
@@ -11,5 +11,17 @@ import { ThemeConfig } from "@ox-content/vite-plugin";
11
11
  */
12
12
  declare const ayu: ThemeConfig;
13
13
  //#endregion
14
- export { ayu, ayu as default };
14
+ //#region src/ayuDark.d.ts
15
+ /**
16
+ * Ayu — Ayu Light and Ayu Dark.
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 ayuDark: ThemeConfig;
25
+ //#endregion
26
+ export { ayu, ayu as default, ayuDark };
15
27
  //# sourceMappingURL=index.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,KAAK"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/ayu.ts","../src/ayuDark.ts"],"mappings":";;;;;;;;;;;cAWa,KAAK;;;;;;;;;;;;cCAL,SAAS"}
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/ayu.d.ts
3
3
  /**
4
4
  * Ayu — Ayu Light and Ayu Mirage.
5
5
  *
@@ -11,5 +11,17 @@ import { ThemeConfig } from "@ox-content/vite-plugin";
11
11
  */
12
12
  declare const ayu: ThemeConfig;
13
13
  //#endregion
14
- export { ayu, ayu as default };
14
+ //#region src/ayuDark.d.ts
15
+ /**
16
+ * Ayu — Ayu Light and Ayu Dark.
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 ayuDark: ThemeConfig;
25
+ //#endregion
26
+ export { ayu, ayu as default, ayuDark };
15
27
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;cAWa,KAAK"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/ayu.ts","../src/ayuDark.ts"],"mappings":";;;;;;;;;;;cAWa,KAAK;;;;;;;;;;;;cCAL,SAAS"}
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- //#region src/index.ts
1
+ //#region src/ayu.ts
2
2
  /**
3
3
  * Ayu — Ayu Light and Ayu Mirage.
4
4
  *
@@ -140,6 +140,148 @@ const ayu = {
140
140
  }
141
141
  };
142
142
  //#endregion
143
- export { ayu, ayu as default };
143
+ //#region src/ayuDark.ts
144
+ /**
145
+ * Ayu — Ayu Light and Ayu Dark.
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 ayuDark = {
154
+ name: "ayu-dark",
155
+ colors: {
156
+ primary: "#a36229",
157
+ primaryHover: "#b65b00",
158
+ background: "#fcfcfc",
159
+ backgroundAlt: "#f3f4f5",
160
+ text: "#5c6166",
161
+ textMuted: "#6e747a",
162
+ border: "#e7e8e9",
163
+ codeBackground: "#f3f4f5",
164
+ codeBackgroundTop: "#f3f4f5",
165
+ codeText: "#5c6166"
166
+ },
167
+ darkColors: {
168
+ primary: "#e6b450",
169
+ primaryHover: "#e6b450",
170
+ background: "#10141c",
171
+ backgroundAlt: "#0d1017",
172
+ text: "#bfbdb6",
173
+ textMuted: "#7b858f",
174
+ border: "#1b1f29",
175
+ codeBackground: "#10141c",
176
+ codeBackgroundTop: "#10141c",
177
+ codeText: "#bfbdb6"
178
+ },
179
+ tokens: {
180
+ "color-code-line-highlight": "color-mix(in srgb, #399ee6 16%, transparent)",
181
+ "color-code-line-warning": "color-mix(in srgb, #f2ae49 18%, transparent)",
182
+ "color-code-line-warning-border": "#f2ae49",
183
+ "color-code-line-error": "color-mix(in srgb, #f07171 20%, transparent)",
184
+ "color-code-line-error-border": "#f07171",
185
+ "color-code-line-add": "color-mix(in srgb, #86b300 16%, transparent)",
186
+ "color-code-line-add-border": "#86b300",
187
+ "color-code-line-remove": "color-mix(in srgb, #f07171 14%, transparent)",
188
+ "color-code-line-remove-border": "#f07171",
189
+ "color-code-line-focus": "color-mix(in srgb, #a36229 16%, transparent)",
190
+ "color-code-line-dim": "0.45",
191
+ "color-code-title-bg": "color-mix(in srgb, #f3f4f5 92%, #5c6166)",
192
+ "color-code-title-text": "color-mix(in srgb, #5c6166 88%, #f3f4f5)",
193
+ "color-code-title-border": "color-mix(in srgb, #5c6166 22%, transparent)",
194
+ "color-code-line-number": "color-mix(in srgb, #5c6166 48%, transparent)",
195
+ "color-code-frame-border": "color-mix(in srgb, #e7e8e9 92%, transparent)",
196
+ "color-backdrop": "rgba(88, 88, 88, 0.62)",
197
+ "surface-glass": "color-mix(in srgb, #f3f4f5 62%, #fcfcfc)",
198
+ "surface-line": "color-mix(in srgb, #e7e8e9 72%, #fcfcfc)",
199
+ "brand-violet": "#a37acc",
200
+ "brand-cyan": "#4cbf99",
201
+ "brand-lime": "#86b300",
202
+ "brand-coral": "#f07171",
203
+ "brand-navy": "color-mix(in srgb, #5c6166 70%, #fcfcfc)",
204
+ "brand-violet-rgb": "163, 122, 204",
205
+ "brand-cyan-rgb": "76, 191, 153",
206
+ "brand-lime-rgb": "134, 179, 0",
207
+ "brand-coral-rgb": "240, 113, 113",
208
+ "accent-a": "#a36229",
209
+ "accent-b": "#a37acc",
210
+ "accent-c": "#4cbf99",
211
+ "accent-warm": "#f2ae49",
212
+ "accent-cool": "#399ee6",
213
+ "accent-a-ink": "#a36229",
214
+ "accent-b-ink": "#8262a3",
215
+ "accent-c-ink": "#348268",
216
+ "accent-warm-ink": "#91682c",
217
+ "accent-cool-ink": "#2b78af",
218
+ "accent-coral-ink": "#b65656",
219
+ "syntax-foreground": "#5c6166",
220
+ "syntax-background": "#f3f4f5",
221
+ "syntax-token-comment": "color-mix(in srgb, #5c6166 55%, #f3f4f5)",
222
+ "syntax-token-punctuation": "color-mix(in srgb, #5c6166 72%, #f3f4f5)",
223
+ "syntax-token-keyword": "#a37acc",
224
+ "syntax-token-string": "#86b300",
225
+ "syntax-token-string-expression": "#86b300",
226
+ "syntax-token-constant": "#f2ae49",
227
+ "syntax-token-function": "#399ee6",
228
+ "syntax-token-parameter": "#f07171",
229
+ "syntax-token-link": "#4cbf99"
230
+ },
231
+ darkTokens: {
232
+ "color-code-line-highlight": "color-mix(in srgb, #4fbfff 16%, transparent)",
233
+ "color-code-line-warning": "color-mix(in srgb, #fdb04c 18%, transparent)",
234
+ "color-code-line-warning-border": "#fdb04c",
235
+ "color-code-line-error": "color-mix(in srgb, #f06b73 20%, transparent)",
236
+ "color-code-line-error-border": "#f06b73",
237
+ "color-code-line-add": "color-mix(in srgb, #70bf56 16%, transparent)",
238
+ "color-code-line-add-border": "#70bf56",
239
+ "color-code-line-remove": "color-mix(in srgb, #f06b73 14%, transparent)",
240
+ "color-code-line-remove-border": "#f06b73",
241
+ "color-code-line-focus": "color-mix(in srgb, #e6b450 16%, transparent)",
242
+ "color-code-line-dim": "0.35",
243
+ "color-code-title-bg": "color-mix(in srgb, #10141c 92%, #bfbdb6)",
244
+ "color-code-title-text": "color-mix(in srgb, #bfbdb6 88%, #10141c)",
245
+ "color-code-title-border": "color-mix(in srgb, #bfbdb6 22%, transparent)",
246
+ "color-code-line-number": "color-mix(in srgb, #bfbdb6 48%, transparent)",
247
+ "color-code-frame-border": "color-mix(in srgb, #1b1f29 92%, transparent)",
248
+ "color-backdrop": "rgba(6, 7, 10, 0.62)",
249
+ "surface-glass": "color-mix(in srgb, #0d1017 62%, #10141c)",
250
+ "surface-line": "color-mix(in srgb, #1b1f29 72%, #10141c)",
251
+ "brand-violet": "#d0a1ff",
252
+ "brand-cyan": "#93e2c8",
253
+ "brand-lime": "#70bf56",
254
+ "brand-coral": "#f06b73",
255
+ "brand-navy": "color-mix(in srgb, #bfbdb6 70%, #10141c)",
256
+ "brand-violet-rgb": "208, 161, 255",
257
+ "brand-cyan-rgb": "147, 226, 200",
258
+ "brand-lime-rgb": "112, 191, 86",
259
+ "brand-coral-rgb": "240, 107, 115",
260
+ "accent-a": "#e6b450",
261
+ "accent-b": "#d0a1ff",
262
+ "accent-c": "#93e2c8",
263
+ "accent-warm": "#fdb04c",
264
+ "accent-cool": "#4fbfff",
265
+ "accent-a-ink": "#e6b450",
266
+ "accent-b-ink": "#d0a1ff",
267
+ "accent-c-ink": "#93e2c8",
268
+ "accent-warm-ink": "#fdb04c",
269
+ "accent-cool-ink": "#4fbfff",
270
+ "accent-coral-ink": "#f06b73",
271
+ "syntax-foreground": "#bfbdb6",
272
+ "syntax-background": "#10141c",
273
+ "syntax-token-comment": "#5a6673",
274
+ "syntax-token-punctuation": "#bfbdb6b3",
275
+ "syntax-token-keyword": "#ff8f40",
276
+ "syntax-token-string": "#aad94c",
277
+ "syntax-token-string-expression": "#aad94c",
278
+ "syntax-token-constant": "#d2a6ff",
279
+ "syntax-token-function": "#ffb454",
280
+ "syntax-token-parameter": "#d2a6ff",
281
+ "syntax-token-link": "#39bae6"
282
+ }
283
+ };
284
+ //#endregion
285
+ export { ayu, ayu as default, ayuDark };
144
286
 
145
287
  //# 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 * Ayu — Ayu Light and Ayu Mirage.\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 ayu: ThemeConfig = {\n name: \"ayu\",\n colors: {\n primary: \"#a36229\",\n primaryHover: \"#b65b00\",\n background: \"#fcfcfc\",\n backgroundAlt: \"#f3f4f5\",\n text: \"#5c6166\",\n textMuted: \"#6e747a\",\n border: \"#e7e8e9\",\n codeBackground: \"#f3f4f5\",\n codeBackgroundTop: \"#f3f4f5\",\n codeText: \"#5c6166\",\n },\n darkColors: {\n primary: \"#ffcc66\",\n primaryHover: \"#ffdd99\",\n background: \"#1f2430\",\n backgroundAlt: \"#242936\",\n text: \"#cccac2\",\n textMuted: \"#8a9199\",\n border: \"#343b4b\",\n codeBackground: \"#1a1f29\",\n codeBackgroundTop: \"#1a1f29\",\n codeText: \"#cccac2\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #399ee6 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #f2ae49 18%, transparent)\",\n \"color-code-line-warning-border\": \"#f2ae49\",\n \"color-code-line-error\": \"color-mix(in srgb, #f07171 20%, transparent)\",\n \"color-code-line-error-border\": \"#f07171\",\n \"color-code-line-add\": \"color-mix(in srgb, #86b300 16%, transparent)\",\n \"color-code-line-add-border\": \"#86b300\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f07171 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f07171\",\n \"color-code-line-focus\": \"color-mix(in srgb, #a36229 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f3f4f5 92%, #5c6166)\",\n \"color-code-title-text\": \"color-mix(in srgb, #5c6166 88%, #f3f4f5)\",\n \"color-code-title-border\": \"color-mix(in srgb, #5c6166 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #5c6166 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #e7e8e9 92%, transparent)\",\n \"color-backdrop\": \"rgba(88, 88, 88, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f3f4f5 62%, #fcfcfc)\",\n \"surface-line\": \"color-mix(in srgb, #e7e8e9 72%, #fcfcfc)\",\n \"brand-violet\": \"#a37acc\",\n \"brand-cyan\": \"#4cbf99\",\n \"brand-lime\": \"#86b300\",\n \"brand-coral\": \"#f07171\",\n \"brand-navy\": \"color-mix(in srgb, #5c6166 70%, #fcfcfc)\",\n \"brand-violet-rgb\": \"163, 122, 204\",\n \"brand-cyan-rgb\": \"76, 191, 153\",\n \"brand-lime-rgb\": \"134, 179, 0\",\n \"brand-coral-rgb\": \"240, 113, 113\",\n \"accent-a\": \"#a36229\",\n \"accent-b\": \"#a37acc\",\n \"accent-c\": \"#4cbf99\",\n \"accent-warm\": \"#f2ae49\",\n \"accent-cool\": \"#399ee6\",\n \"accent-a-ink\": \"#a36229\",\n \"accent-b-ink\": \"#8262a3\",\n \"accent-c-ink\": \"#348268\",\n \"accent-warm-ink\": \"#91682c\",\n \"accent-cool-ink\": \"#2b78af\",\n \"accent-coral-ink\": \"#b65656\",\n \"syntax-foreground\": \"#5c6166\",\n \"syntax-background\": \"#f3f4f5\",\n \"syntax-token-comment\": \"color-mix(in srgb, #5c6166 55%, #f3f4f5)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #5c6166 72%, #f3f4f5)\",\n \"syntax-token-keyword\": \"#a37acc\",\n \"syntax-token-string\": \"#86b300\",\n \"syntax-token-string-expression\": \"#86b300\",\n \"syntax-token-constant\": \"#f2ae49\",\n \"syntax-token-function\": \"#399ee6\",\n \"syntax-token-parameter\": \"#f07171\",\n \"syntax-token-link\": \"#4cbf99\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #73d0ff 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #ffd173 18%, transparent)\",\n \"color-code-line-warning-border\": \"#ffd173\",\n \"color-code-line-error\": \"color-mix(in srgb, #f28779 20%, transparent)\",\n \"color-code-line-error-border\": \"#f28779\",\n \"color-code-line-add\": \"color-mix(in srgb, #d5ff80 16%, transparent)\",\n \"color-code-line-add-border\": \"#d5ff80\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f28779 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f28779\",\n \"color-code-line-focus\": \"color-mix(in srgb, #ffcc66 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #1a1f29 92%, #cccac2)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cccac2 88%, #1a1f29)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cccac2 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cccac2 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #343b4b 92%, transparent)\",\n \"color-backdrop\": \"rgba(11, 13, 17, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #242936 62%, #1f2430)\",\n \"surface-line\": \"color-mix(in srgb, #343b4b 72%, #1f2430)\",\n \"brand-violet\": \"#dfbfff\",\n \"brand-cyan\": \"#95e6cb\",\n \"brand-lime\": \"#d5ff80\",\n \"brand-coral\": \"#f28779\",\n \"brand-navy\": \"color-mix(in srgb, #cccac2 70%, #1f2430)\",\n \"brand-violet-rgb\": \"223, 191, 255\",\n \"brand-cyan-rgb\": \"149, 230, 203\",\n \"brand-lime-rgb\": \"213, 255, 128\",\n \"brand-coral-rgb\": \"242, 135, 121\",\n \"accent-a\": \"#ffcc66\",\n \"accent-b\": \"#dfbfff\",\n \"accent-c\": \"#95e6cb\",\n \"accent-warm\": \"#ffd173\",\n \"accent-cool\": \"#73d0ff\",\n \"accent-a-ink\": \"#ffcc66\",\n \"accent-b-ink\": \"#dfbfff\",\n \"accent-c-ink\": \"#95e6cb\",\n \"accent-warm-ink\": \"#ffd173\",\n \"accent-cool-ink\": \"#73d0ff\",\n \"accent-coral-ink\": \"#f28779\",\n \"syntax-foreground\": \"#cccac2\",\n \"syntax-background\": \"#1a1f29\",\n \"syntax-token-comment\": \"color-mix(in srgb, #cccac2 55%, #1a1f29)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #cccac2 72%, #1a1f29)\",\n \"syntax-token-keyword\": \"#dfbfff\",\n \"syntax-token-string\": \"#d5ff80\",\n \"syntax-token-string-expression\": \"#d5ff80\",\n \"syntax-token-constant\": \"#ffd173\",\n \"syntax-token-function\": \"#73d0ff\",\n \"syntax-token-parameter\": \"#f28779\",\n \"syntax-token-link\": \"#95e6cb\",\n },\n};\n\nexport default ayu;\n"],"mappings":";;;;;;;;;;AAWA,MAAa,MAAmB;CAC9B,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/ayu.ts","../src/ayuDark.ts"],"sourcesContent":["import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Ayu — Ayu Light and Ayu Mirage.\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 ayu: ThemeConfig = {\n name: \"ayu\",\n colors: {\n primary: \"#a36229\",\n primaryHover: \"#b65b00\",\n background: \"#fcfcfc\",\n backgroundAlt: \"#f3f4f5\",\n text: \"#5c6166\",\n textMuted: \"#6e747a\",\n border: \"#e7e8e9\",\n codeBackground: \"#f3f4f5\",\n codeBackgroundTop: \"#f3f4f5\",\n codeText: \"#5c6166\",\n },\n darkColors: {\n primary: \"#ffcc66\",\n primaryHover: \"#ffdd99\",\n background: \"#1f2430\",\n backgroundAlt: \"#242936\",\n text: \"#cccac2\",\n textMuted: \"#8a9199\",\n border: \"#343b4b\",\n codeBackground: \"#1a1f29\",\n codeBackgroundTop: \"#1a1f29\",\n codeText: \"#cccac2\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #399ee6 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #f2ae49 18%, transparent)\",\n \"color-code-line-warning-border\": \"#f2ae49\",\n \"color-code-line-error\": \"color-mix(in srgb, #f07171 20%, transparent)\",\n \"color-code-line-error-border\": \"#f07171\",\n \"color-code-line-add\": \"color-mix(in srgb, #86b300 16%, transparent)\",\n \"color-code-line-add-border\": \"#86b300\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f07171 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f07171\",\n \"color-code-line-focus\": \"color-mix(in srgb, #a36229 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f3f4f5 92%, #5c6166)\",\n \"color-code-title-text\": \"color-mix(in srgb, #5c6166 88%, #f3f4f5)\",\n \"color-code-title-border\": \"color-mix(in srgb, #5c6166 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #5c6166 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #e7e8e9 92%, transparent)\",\n \"color-backdrop\": \"rgba(88, 88, 88, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f3f4f5 62%, #fcfcfc)\",\n \"surface-line\": \"color-mix(in srgb, #e7e8e9 72%, #fcfcfc)\",\n \"brand-violet\": \"#a37acc\",\n \"brand-cyan\": \"#4cbf99\",\n \"brand-lime\": \"#86b300\",\n \"brand-coral\": \"#f07171\",\n \"brand-navy\": \"color-mix(in srgb, #5c6166 70%, #fcfcfc)\",\n \"brand-violet-rgb\": \"163, 122, 204\",\n \"brand-cyan-rgb\": \"76, 191, 153\",\n \"brand-lime-rgb\": \"134, 179, 0\",\n \"brand-coral-rgb\": \"240, 113, 113\",\n \"accent-a\": \"#a36229\",\n \"accent-b\": \"#a37acc\",\n \"accent-c\": \"#4cbf99\",\n \"accent-warm\": \"#f2ae49\",\n \"accent-cool\": \"#399ee6\",\n \"accent-a-ink\": \"#a36229\",\n \"accent-b-ink\": \"#8262a3\",\n \"accent-c-ink\": \"#348268\",\n \"accent-warm-ink\": \"#91682c\",\n \"accent-cool-ink\": \"#2b78af\",\n \"accent-coral-ink\": \"#b65656\",\n \"syntax-foreground\": \"#5c6166\",\n \"syntax-background\": \"#f3f4f5\",\n \"syntax-token-comment\": \"color-mix(in srgb, #5c6166 55%, #f3f4f5)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #5c6166 72%, #f3f4f5)\",\n \"syntax-token-keyword\": \"#a37acc\",\n \"syntax-token-string\": \"#86b300\",\n \"syntax-token-string-expression\": \"#86b300\",\n \"syntax-token-constant\": \"#f2ae49\",\n \"syntax-token-function\": \"#399ee6\",\n \"syntax-token-parameter\": \"#f07171\",\n \"syntax-token-link\": \"#4cbf99\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #73d0ff 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #ffd173 18%, transparent)\",\n \"color-code-line-warning-border\": \"#ffd173\",\n \"color-code-line-error\": \"color-mix(in srgb, #f28779 20%, transparent)\",\n \"color-code-line-error-border\": \"#f28779\",\n \"color-code-line-add\": \"color-mix(in srgb, #d5ff80 16%, transparent)\",\n \"color-code-line-add-border\": \"#d5ff80\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f28779 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f28779\",\n \"color-code-line-focus\": \"color-mix(in srgb, #ffcc66 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #1a1f29 92%, #cccac2)\",\n \"color-code-title-text\": \"color-mix(in srgb, #cccac2 88%, #1a1f29)\",\n \"color-code-title-border\": \"color-mix(in srgb, #cccac2 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #cccac2 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #343b4b 92%, transparent)\",\n \"color-backdrop\": \"rgba(11, 13, 17, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #242936 62%, #1f2430)\",\n \"surface-line\": \"color-mix(in srgb, #343b4b 72%, #1f2430)\",\n \"brand-violet\": \"#dfbfff\",\n \"brand-cyan\": \"#95e6cb\",\n \"brand-lime\": \"#d5ff80\",\n \"brand-coral\": \"#f28779\",\n \"brand-navy\": \"color-mix(in srgb, #cccac2 70%, #1f2430)\",\n \"brand-violet-rgb\": \"223, 191, 255\",\n \"brand-cyan-rgb\": \"149, 230, 203\",\n \"brand-lime-rgb\": \"213, 255, 128\",\n \"brand-coral-rgb\": \"242, 135, 121\",\n \"accent-a\": \"#ffcc66\",\n \"accent-b\": \"#dfbfff\",\n \"accent-c\": \"#95e6cb\",\n \"accent-warm\": \"#ffd173\",\n \"accent-cool\": \"#73d0ff\",\n \"accent-a-ink\": \"#ffcc66\",\n \"accent-b-ink\": \"#dfbfff\",\n \"accent-c-ink\": \"#95e6cb\",\n \"accent-warm-ink\": \"#ffd173\",\n \"accent-cool-ink\": \"#73d0ff\",\n \"accent-coral-ink\": \"#f28779\",\n \"syntax-foreground\": \"#cccac2\",\n \"syntax-background\": \"#1a1f29\",\n \"syntax-token-comment\": \"color-mix(in srgb, #cccac2 55%, #1a1f29)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #cccac2 72%, #1a1f29)\",\n \"syntax-token-keyword\": \"#dfbfff\",\n \"syntax-token-string\": \"#d5ff80\",\n \"syntax-token-string-expression\": \"#d5ff80\",\n \"syntax-token-constant\": \"#ffd173\",\n \"syntax-token-function\": \"#73d0ff\",\n \"syntax-token-parameter\": \"#f28779\",\n \"syntax-token-link\": \"#95e6cb\",\n },\n};\n","import type { ThemeConfig } from \"@ox-content/vite-plugin\";\n\n/**\n * Ayu — Ayu Light and Ayu Dark.\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 ayuDark: ThemeConfig = {\n name: \"ayu-dark\",\n colors: {\n primary: \"#a36229\",\n primaryHover: \"#b65b00\",\n background: \"#fcfcfc\",\n backgroundAlt: \"#f3f4f5\",\n text: \"#5c6166\",\n textMuted: \"#6e747a\",\n border: \"#e7e8e9\",\n codeBackground: \"#f3f4f5\",\n codeBackgroundTop: \"#f3f4f5\",\n codeText: \"#5c6166\",\n },\n darkColors: {\n primary: \"#e6b450\",\n primaryHover: \"#e6b450\",\n background: \"#10141c\",\n backgroundAlt: \"#0d1017\",\n text: \"#bfbdb6\",\n textMuted: \"#7b858f\",\n border: \"#1b1f29\",\n codeBackground: \"#10141c\",\n codeBackgroundTop: \"#10141c\",\n codeText: \"#bfbdb6\",\n },\n tokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #399ee6 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #f2ae49 18%, transparent)\",\n \"color-code-line-warning-border\": \"#f2ae49\",\n \"color-code-line-error\": \"color-mix(in srgb, #f07171 20%, transparent)\",\n \"color-code-line-error-border\": \"#f07171\",\n \"color-code-line-add\": \"color-mix(in srgb, #86b300 16%, transparent)\",\n \"color-code-line-add-border\": \"#86b300\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f07171 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f07171\",\n \"color-code-line-focus\": \"color-mix(in srgb, #a36229 16%, transparent)\",\n \"color-code-line-dim\": \"0.45\",\n \"color-code-title-bg\": \"color-mix(in srgb, #f3f4f5 92%, #5c6166)\",\n \"color-code-title-text\": \"color-mix(in srgb, #5c6166 88%, #f3f4f5)\",\n \"color-code-title-border\": \"color-mix(in srgb, #5c6166 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #5c6166 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #e7e8e9 92%, transparent)\",\n \"color-backdrop\": \"rgba(88, 88, 88, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #f3f4f5 62%, #fcfcfc)\",\n \"surface-line\": \"color-mix(in srgb, #e7e8e9 72%, #fcfcfc)\",\n \"brand-violet\": \"#a37acc\",\n \"brand-cyan\": \"#4cbf99\",\n \"brand-lime\": \"#86b300\",\n \"brand-coral\": \"#f07171\",\n \"brand-navy\": \"color-mix(in srgb, #5c6166 70%, #fcfcfc)\",\n \"brand-violet-rgb\": \"163, 122, 204\",\n \"brand-cyan-rgb\": \"76, 191, 153\",\n \"brand-lime-rgb\": \"134, 179, 0\",\n \"brand-coral-rgb\": \"240, 113, 113\",\n \"accent-a\": \"#a36229\",\n \"accent-b\": \"#a37acc\",\n \"accent-c\": \"#4cbf99\",\n \"accent-warm\": \"#f2ae49\",\n \"accent-cool\": \"#399ee6\",\n \"accent-a-ink\": \"#a36229\",\n \"accent-b-ink\": \"#8262a3\",\n \"accent-c-ink\": \"#348268\",\n \"accent-warm-ink\": \"#91682c\",\n \"accent-cool-ink\": \"#2b78af\",\n \"accent-coral-ink\": \"#b65656\",\n \"syntax-foreground\": \"#5c6166\",\n \"syntax-background\": \"#f3f4f5\",\n \"syntax-token-comment\": \"color-mix(in srgb, #5c6166 55%, #f3f4f5)\",\n \"syntax-token-punctuation\": \"color-mix(in srgb, #5c6166 72%, #f3f4f5)\",\n \"syntax-token-keyword\": \"#a37acc\",\n \"syntax-token-string\": \"#86b300\",\n \"syntax-token-string-expression\": \"#86b300\",\n \"syntax-token-constant\": \"#f2ae49\",\n \"syntax-token-function\": \"#399ee6\",\n \"syntax-token-parameter\": \"#f07171\",\n \"syntax-token-link\": \"#4cbf99\",\n },\n darkTokens: {\n \"color-code-line-highlight\": \"color-mix(in srgb, #4fbfff 16%, transparent)\",\n \"color-code-line-warning\": \"color-mix(in srgb, #fdb04c 18%, transparent)\",\n \"color-code-line-warning-border\": \"#fdb04c\",\n \"color-code-line-error\": \"color-mix(in srgb, #f06b73 20%, transparent)\",\n \"color-code-line-error-border\": \"#f06b73\",\n \"color-code-line-add\": \"color-mix(in srgb, #70bf56 16%, transparent)\",\n \"color-code-line-add-border\": \"#70bf56\",\n \"color-code-line-remove\": \"color-mix(in srgb, #f06b73 14%, transparent)\",\n \"color-code-line-remove-border\": \"#f06b73\",\n \"color-code-line-focus\": \"color-mix(in srgb, #e6b450 16%, transparent)\",\n \"color-code-line-dim\": \"0.35\",\n \"color-code-title-bg\": \"color-mix(in srgb, #10141c 92%, #bfbdb6)\",\n \"color-code-title-text\": \"color-mix(in srgb, #bfbdb6 88%, #10141c)\",\n \"color-code-title-border\": \"color-mix(in srgb, #bfbdb6 22%, transparent)\",\n \"color-code-line-number\": \"color-mix(in srgb, #bfbdb6 48%, transparent)\",\n \"color-code-frame-border\": \"color-mix(in srgb, #1b1f29 92%, transparent)\",\n \"color-backdrop\": \"rgba(6, 7, 10, 0.62)\",\n \"surface-glass\": \"color-mix(in srgb, #0d1017 62%, #10141c)\",\n \"surface-line\": \"color-mix(in srgb, #1b1f29 72%, #10141c)\",\n \"brand-violet\": \"#d0a1ff\",\n \"brand-cyan\": \"#93e2c8\",\n \"brand-lime\": \"#70bf56\",\n \"brand-coral\": \"#f06b73\",\n \"brand-navy\": \"color-mix(in srgb, #bfbdb6 70%, #10141c)\",\n \"brand-violet-rgb\": \"208, 161, 255\",\n \"brand-cyan-rgb\": \"147, 226, 200\",\n \"brand-lime-rgb\": \"112, 191, 86\",\n \"brand-coral-rgb\": \"240, 107, 115\",\n \"accent-a\": \"#e6b450\",\n \"accent-b\": \"#d0a1ff\",\n \"accent-c\": \"#93e2c8\",\n \"accent-warm\": \"#fdb04c\",\n \"accent-cool\": \"#4fbfff\",\n \"accent-a-ink\": \"#e6b450\",\n \"accent-b-ink\": \"#d0a1ff\",\n \"accent-c-ink\": \"#93e2c8\",\n \"accent-warm-ink\": \"#fdb04c\",\n \"accent-cool-ink\": \"#4fbfff\",\n \"accent-coral-ink\": \"#f06b73\",\n \"syntax-foreground\": \"#bfbdb6\",\n \"syntax-background\": \"#10141c\",\n \"syntax-token-comment\": \"#5a6673\",\n \"syntax-token-punctuation\": \"#bfbdb6b3\",\n \"syntax-token-keyword\": \"#ff8f40\",\n \"syntax-token-string\": \"#aad94c\",\n \"syntax-token-string-expression\": \"#aad94c\",\n \"syntax-token-constant\": \"#d2a6ff\",\n \"syntax-token-function\": \"#ffb454\",\n \"syntax-token-parameter\": \"#d2a6ff\",\n \"syntax-token-link\": \"#39bae6\",\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-ayu",
3
- "version": "3.0.0-alpha.9",
3
+ "version": "3.0.0-beta.0",
4
4
  "description": "Ayu Light and Ayu Mirage — an Ox Content color scheme that composes with any @ox-content/theme-* skin",
5
5
  "keywords": [
6
6
  "ayu",
@@ -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.9"
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"