@astryxdesign/theme-gothic 0.0.0-bootstrap.0 → 0.0.15

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.
@@ -0,0 +1,613 @@
1
+ import {
2
+ gothicIconRegistry
3
+ } from "./chunk-DQCR44CW.mjs";
4
+
5
+ // src/gothicTheme.ts
6
+ import { defineTheme, defineSyntaxTheme } from "@astryxdesign/core/theme";
7
+ var gothicSyntax = defineSyntaxTheme({
8
+ name: "xds-gothic",
9
+ tokens: {
10
+ keyword: "#c39adb",
11
+ // Cathedral plum
12
+ string: "#a3c987",
13
+ // Forest moss
14
+ comment: "#6b7079",
15
+ // Faded ink
16
+ number: "#dec074",
17
+ // Aged gold
18
+ function: "#8aa1d8",
19
+ // Midnight indigo
20
+ type: "#c39adb",
21
+ // Cathedral plum
22
+ variable: "#E8F1F6",
23
+ // Parchment
24
+ operator: "#96A0AB",
25
+ // Mid neutral
26
+ constant: "#e6b85e",
27
+ // Candlelight amber
28
+ tag: "#d97580",
29
+ // Blood crimson
30
+ attribute: "#dec074",
31
+ // Aged gold
32
+ property: "#7cc5b3",
33
+ // Verdigris
34
+ punctuation: "#7a8290",
35
+ // Mid neutral
36
+ background: "#101314"
37
+ }
38
+ });
39
+ var gothicTheme = defineTheme({
40
+ name: "gothic",
41
+ typography: {
42
+ // base 16 / ratio 1.25 — larger scale so the (optically small) blackletter
43
+ // display sizes read large enough to carry the theme.
44
+ scale: { base: 16, ratio: 1.25 },
45
+ body: {
46
+ family: "Fustat",
47
+ fallbacks: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif'
48
+ },
49
+ // Headings (h1-h6) use Fustat to match the body — Manufacturing Consent
50
+ // is reserved for display sizes only (see component overrides below).
51
+ heading: {
52
+ family: "Fustat",
53
+ fallbacks: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
54
+ weights: { 3: "bold", 4: "bold" }
55
+ },
56
+ code: {
57
+ family: "JetBrains Mono",
58
+ fallbacks: '"SF Mono", Monaco, Consolas, monospace'
59
+ }
60
+ },
61
+ // Slower, theatrical motion — gothic doesn't rush.
62
+ motion: { fast: 150, medium: 350, slow: 800, ratio: 0.75 },
63
+ syntax: gothicSyntax,
64
+ tokens: {
65
+ // =========================================================================
66
+ // Colors — gothic dark palette (single values, dark-only)
67
+ // Core: #E8F1F6, #96A0AB, #495056, #24292D, #101314
68
+ // =========================================================================
69
+ // Core semantic
70
+ "--color-accent": "#E8F1F6",
71
+ "--color-accent-muted": "#E8F1F620",
72
+ "--color-neutral": "#E8F1F61A",
73
+ "--color-background-surface": "#101314",
74
+ "--color-background-body": "#101314",
75
+ "--color-overlay": "#101314CC",
76
+ "--color-overlay-hover": "#E8F1F60D",
77
+ "--color-overlay-pressed": "#E8F1F61A",
78
+ "--color-background-muted": "#24292D",
79
+ // Text
80
+ "--color-text-primary": "#E8F1F6",
81
+ "--color-text-secondary": "#96A0AB",
82
+ "--color-text-disabled": "#495056",
83
+ "--color-text-accent": "#E8F1F6",
84
+ "--color-on-dark": "#E8F1F6",
85
+ "--color-on-light": "#101314",
86
+ "--color-on-accent": "#101314",
87
+ "--color-on-success": "#101314",
88
+ "--color-on-error": "#101314",
89
+ "--color-on-warning": "#101314",
90
+ // Icon
91
+ "--color-icon-accent": "#E8F1F6",
92
+ "--color-icon-primary": "#E8F1F6",
93
+ "--color-icon-secondary": "#96A0AB",
94
+ "--color-icon-disabled": "#495056",
95
+ // Surface variants
96
+ "--color-background-card": "#1a1d20",
97
+ "--color-background-popover": "#24292D",
98
+ "--color-background-inverted": "#E8F1F6",
99
+ // Status / Sentiment — dusty pastels matching the categorical
100
+ // pattern. Used for status surfaces, destructive button bg, etc.
101
+ "--color-success": "#b3c79a",
102
+ // sage moss
103
+ "--color-success-muted": "#b3c79a",
104
+ "--color-error": "#c6a6a2",
105
+ // dusty rose
106
+ "--color-error-muted": "#c6a6a2",
107
+ "--color-warning": "#d3c490",
108
+ // aged gold
109
+ "--color-warning-muted": "#d3c490",
110
+ // Border
111
+ "--color-border": "#E8F1F61A",
112
+ "--color-border-emphasized": "#495056",
113
+ // Effects
114
+ "--color-skeleton": "#495056",
115
+ "--color-shadow": "#0000004D",
116
+ "--color-tint-hover": "white",
117
+ // =========================================================================
118
+ // Categorical — dusty pastel-on-dark pattern
119
+ // Hand-tuned dusty pastels (T75 with reduced chroma) — confident
120
+ // but never bright. Neutral is a dark slate with white text — the
121
+ // "no-color" variant earns its hierarchy by matching the page mood.
122
+ // =========================================================================
123
+ // Blue (periwinkle midnight)
124
+ "--color-background-blue": "#a3b5d6",
125
+ "--color-border-blue": "#8696b8",
126
+ "--color-icon-blue": "#2a3b6e",
127
+ "--color-text-blue": "#1f2c54",
128
+ // Cyan (cathedral mist)
129
+ "--color-background-cyan": "#a3c2cf",
130
+ "--color-border-cyan": "#86a4b1",
131
+ "--color-icon-cyan": "#2a5e75",
132
+ "--color-text-cyan": "#204858",
133
+ // Gray (dark slate — special: dark bg + light text)
134
+ "--color-background-gray": "#3d4248",
135
+ "--color-border-gray": "#5d646b",
136
+ "--color-icon-gray": "#E8F1F6",
137
+ "--color-text-gray": "#E8F1F6",
138
+ // Green (sage moss)
139
+ "--color-background-green": "#b3c79a",
140
+ "--color-border-green": "#96a880",
141
+ "--color-icon-green": "#3a5e2c",
142
+ "--color-text-green": "#244023",
143
+ // Orange (warm tan)
144
+ "--color-background-orange": "#d3b89a",
145
+ "--color-border-orange": "#b6987d",
146
+ "--color-icon-orange": "#8a4818",
147
+ "--color-text-orange": "#6e3812",
148
+ // Pink (dusty rose)
149
+ "--color-background-pink": "#c89aab",
150
+ "--color-border-pink": "#aa7d8e",
151
+ "--color-icon-pink": "#8d2d4c",
152
+ "--color-text-pink": "#71223c",
153
+ // Purple (muted plum)
154
+ "--color-background-purple": "#b29bc4",
155
+ "--color-border-purple": "#947da6",
156
+ "--color-icon-purple": "#5a2370",
157
+ "--color-text-purple": "#481b58",
158
+ // Red (dusty rose)
159
+ "--color-background-red": "#c6a6a2",
160
+ "--color-border-red": "#a48581",
161
+ "--color-icon-red": "#5e3a35",
162
+ "--color-text-red": "#4a2520",
163
+ // Teal (sage verdigris)
164
+ "--color-background-teal": "#a3c2b6",
165
+ "--color-border-teal": "#86a499",
166
+ "--color-icon-teal": "#1f5e52",
167
+ "--color-text-teal": "#174a40",
168
+ // Yellow (aged gold)
169
+ "--color-background-yellow": "#d3c490",
170
+ "--color-border-yellow": "#b6a775",
171
+ "--color-icon-yellow": "#876515",
172
+ "--color-text-yellow": "#6c5010",
173
+ // =========================================================================
174
+ // Radius — subtle rounding (original gothic)
175
+ // =========================================================================
176
+ "--radius-none": "0.125rem",
177
+ "--radius-inner": "0.25rem",
178
+ "--radius-element": "0.5rem",
179
+ "--radius-container": "0.75rem",
180
+ "--radius-page": "1.5rem",
181
+ "--radius-full": "9999px",
182
+ // =========================================================================
183
+ // Shadows — restrained, atmospheric
184
+ // =========================================================================
185
+ "--shadow-low": "0 2px 4px #00000033, 0 4px 8px #00000040",
186
+ "--shadow-med": "0 2px 4px #00000033, 0 4px 12px #00000040",
187
+ "--shadow-high": "0 4px 6px #00000040, 0 12px 24px #0000004D",
188
+ "--shadow-inset-hover": "inset 0px 0px 0px 1px #96A0AB30",
189
+ "--shadow-inset-selected": "inset 0px 0px 0px 2px #96A0AB50",
190
+ "--shadow-inset-success": "inset 0px 0px 0px 1px #87b06a50",
191
+ "--shadow-inset-warning": "inset 0px 0px 0px 1px #d6b56a50",
192
+ "--shadow-inset-error": "inset 0px 0px 0px 1px #d4485150"
193
+ },
194
+ components: {
195
+ button: {
196
+ // Primary inherits default — light pill with dark text via
197
+ // --color-accent / --color-on-accent (matches the cream badge).
198
+ // Secondary uses the dark-slate "neutral" badge treatment.
199
+ "variant:secondary": {
200
+ backgroundColor: "var(--color-background-gray)",
201
+ color: "var(--color-text-gray)",
202
+ borderColor: "transparent",
203
+ borderWidth: "0"
204
+ },
205
+ "variant:ghost": {
206
+ ":hover": {
207
+ backgroundColor: "var(--color-overlay-hover)"
208
+ }
209
+ },
210
+ // Destructive uses the dusty rose bg with dark warm-brown text
211
+ // (matches the red badge).
212
+ "variant:destructive": {
213
+ backgroundColor: "var(--color-error)",
214
+ color: "var(--color-text-red)"
215
+ }
216
+ },
217
+ badge: {
218
+ base: {
219
+ borderRadius: "var(--radius-element)",
220
+ fontWeight: "var(--font-weight-medium)"
221
+ },
222
+ "variant:info": {
223
+ backgroundColor: "var(--color-background-blue)",
224
+ color: "var(--color-text-blue)"
225
+ },
226
+ "variant:neutral": {
227
+ backgroundColor: "var(--color-background-gray)",
228
+ color: "var(--color-text-gray)"
229
+ },
230
+ "variant:success": {
231
+ backgroundColor: "var(--color-background-green)",
232
+ color: "var(--color-text-green)"
233
+ },
234
+ "variant:warning": {
235
+ backgroundColor: "var(--color-background-yellow)",
236
+ color: "var(--color-text-yellow)"
237
+ },
238
+ "variant:error": {
239
+ backgroundColor: "var(--color-background-red)",
240
+ color: "var(--color-text-red)"
241
+ }
242
+ },
243
+ banner: {
244
+ base: {
245
+ borderRadius: "var(--radius-element)"
246
+ },
247
+ "status:info": {
248
+ backgroundColor: "var(--color-background-blue)",
249
+ "--color-text-primary": "var(--color-text-blue)",
250
+ "--color-text-secondary": "var(--color-text-blue)",
251
+ "--color-accent": "var(--color-text-blue)"
252
+ },
253
+ "status:success": {
254
+ backgroundColor: "var(--color-background-green)",
255
+ "--color-text-primary": "var(--color-text-green)",
256
+ "--color-text-secondary": "var(--color-text-green)",
257
+ "--color-success": "var(--color-text-green)"
258
+ },
259
+ "status:warning": {
260
+ backgroundColor: "var(--color-background-yellow)",
261
+ "--color-text-primary": "var(--color-text-yellow)",
262
+ "--color-text-secondary": "var(--color-text-yellow)",
263
+ "--color-warning": "var(--color-text-yellow)"
264
+ },
265
+ "status:error": {
266
+ backgroundColor: "var(--color-background-red)",
267
+ "--color-text-primary": "var(--color-text-red)",
268
+ "--color-text-secondary": "var(--color-text-red)",
269
+ "--color-error": "var(--color-text-red)"
270
+ }
271
+ },
272
+ card: {
273
+ base: {
274
+ padding: "var(--spacing-3)",
275
+ borderRadius: "var(--radius-container)"
276
+ },
277
+ // Categorical variants — flip --color-text-primary so child
278
+ // XDSText labels stay readable against the dusty pastel bg.
279
+ "variant:blue": {
280
+ "--color-text-primary": "var(--color-text-blue)",
281
+ "--color-text-secondary": "var(--color-text-blue)"
282
+ },
283
+ "variant:cyan": {
284
+ "--color-text-primary": "var(--color-text-cyan)",
285
+ "--color-text-secondary": "var(--color-text-cyan)"
286
+ },
287
+ "variant:gray": {
288
+ "--color-text-primary": "var(--color-text-gray)",
289
+ "--color-text-secondary": "var(--color-text-gray)"
290
+ },
291
+ "variant:green": {
292
+ "--color-text-primary": "var(--color-text-green)",
293
+ "--color-text-secondary": "var(--color-text-green)"
294
+ },
295
+ "variant:orange": {
296
+ "--color-text-primary": "var(--color-text-orange)",
297
+ "--color-text-secondary": "var(--color-text-orange)"
298
+ },
299
+ "variant:pink": {
300
+ "--color-text-primary": "var(--color-text-pink)",
301
+ "--color-text-secondary": "var(--color-text-pink)"
302
+ },
303
+ "variant:purple": {
304
+ "--color-text-primary": "var(--color-text-purple)",
305
+ "--color-text-secondary": "var(--color-text-purple)"
306
+ },
307
+ "variant:red": {
308
+ "--color-text-primary": "var(--color-text-red)",
309
+ "--color-text-secondary": "var(--color-text-red)"
310
+ },
311
+ "variant:teal": {
312
+ "--color-text-primary": "var(--color-text-teal)",
313
+ "--color-text-secondary": "var(--color-text-teal)"
314
+ },
315
+ "variant:yellow": {
316
+ "--color-text-primary": "var(--color-text-yellow)",
317
+ "--color-text-secondary": "var(--color-text-yellow)"
318
+ }
319
+ },
320
+ section: {
321
+ base: {
322
+ padding: "var(--spacing-3)"
323
+ }
324
+ },
325
+ field: {
326
+ base: {
327
+ borderRadius: "var(--radius-element)"
328
+ }
329
+ },
330
+ // Display sizes use Manufacturing Consent — the signature gothic
331
+ // display font, reserved for hero/marketing-scale text only.
332
+ text: {
333
+ "type:display-1": {
334
+ fontFamily: '"Manufacturing Consent", "UnifrakturMaguntia", "Old English Text MT", serif'
335
+ },
336
+ "type:display-2": {
337
+ fontFamily: '"Manufacturing Consent", "UnifrakturMaguntia", "Old English Text MT", serif'
338
+ },
339
+ "type:display-3": {
340
+ fontFamily: '"Manufacturing Consent", "UnifrakturMaguntia", "Old English Text MT", serif'
341
+ }
342
+ }
343
+ },
344
+ icons: gothicIconRegistry
345
+ });
346
+ var gothicPalettes = {
347
+ // Neutral — H=210 C=4 (cool blue-gray, original gothic)
348
+ neutral: {
349
+ hue: 210,
350
+ chroma: 4,
351
+ 0: "#000000",
352
+ 5: "#0a0d0f",
353
+ 10: "#101314",
354
+ 15: "#181c1f",
355
+ 20: "#24292D",
356
+ 25: "#2c3236",
357
+ 30: "#363c40",
358
+ 35: "#40464b",
359
+ 40: "#495056",
360
+ 45: "#535a61",
361
+ 50: "#5d646b",
362
+ 55: "#676f76",
363
+ 60: "#727a82",
364
+ 65: "#7e8690",
365
+ 70: "#8a929c",
366
+ 75: "#96A0AB",
367
+ 80: "#a8b1bb",
368
+ 85: "#bbc3cb",
369
+ 90: "#cdd5db",
370
+ 95: "#E8F1F6",
371
+ 100: "#ffffff"
372
+ },
373
+ // Blue — H=255 C=20 (midnight indigo)
374
+ blue: {
375
+ hue: 255,
376
+ chroma: 20,
377
+ 0: "#000000",
378
+ 5: "#050930",
379
+ 10: "#0c143f",
380
+ 15: "#161e4d",
381
+ 20: "#1f2c54",
382
+ 25: "#2a3565",
383
+ 30: "#2a3b6e",
384
+ 35: "#3a4783",
385
+ 40: "#475497",
386
+ 45: "#5462ab",
387
+ 50: "#6170bf",
388
+ 55: "#6a85cf",
389
+ 60: "#7793d6",
390
+ 65: "#8aa1d8",
391
+ 70: "#a3b5e0",
392
+ 75: "#b6c5e7",
393
+ 80: "#c4d1ec",
394
+ 85: "#d2dcef",
395
+ 90: "#dde2f1",
396
+ 95: "#e8ecf6",
397
+ 100: "#ffffff"
398
+ },
399
+ // Cyan — H=200 C=25 (cathedral mist)
400
+ cyan: {
401
+ hue: 200,
402
+ chroma: 25,
403
+ 0: "#000000",
404
+ 5: "#001724",
405
+ 10: "#062436",
406
+ 15: "#0d3046",
407
+ 20: "#204858",
408
+ 25: "#1c4a66",
409
+ 30: "#2a5e75",
410
+ 35: "#3a6e85",
411
+ 40: "#487d94",
412
+ 45: "#598ea3",
413
+ 50: "#6a9eb1",
414
+ 55: "#7ab0c0",
415
+ 60: "#8cc3d8",
416
+ 65: "#a0cce0",
417
+ 70: "#b1d3e5",
418
+ 75: "#bcdaeb",
419
+ 80: "#c5dfee",
420
+ 85: "#cbe4f0",
421
+ 90: "#d6e6ee",
422
+ 95: "#e3eef3",
423
+ 100: "#ffffff"
424
+ },
425
+ // Green — H=140 C=18 (forest moss)
426
+ green: {
427
+ hue: 140,
428
+ chroma: 18,
429
+ 0: "#000000",
430
+ 5: "#0c1a08",
431
+ 10: "#152511",
432
+ 15: "#1c321a",
433
+ 20: "#2c4a20",
434
+ 25: "#2c4d2a",
435
+ 30: "#3a5e2c",
436
+ 35: "#446a39",
437
+ 40: "#557c44",
438
+ 45: "#658d50",
439
+ 50: "#779e5d",
440
+ 55: "#87b06a",
441
+ 60: "#96bd76",
442
+ 65: "#a3c987",
443
+ 70: "#b5d397",
444
+ 75: "#bdd99e",
445
+ 80: "#c8e0ad",
446
+ 85: "#d4e6bd",
447
+ 90: "#dde6d4",
448
+ 95: "#eaf3df",
449
+ 100: "#ffffff"
450
+ },
451
+ // Orange — H=40 C=35 (rust copper)
452
+ orange: {
453
+ hue: 40,
454
+ chroma: 35,
455
+ 0: "#000000",
456
+ 5: "#1f0d00",
457
+ 10: "#2c1606",
458
+ 15: "#3a200d",
459
+ 20: "#6e3812",
460
+ 25: "#5a371a",
461
+ 30: "#8a4818",
462
+ 35: "#9a5824",
463
+ 40: "#a05728",
464
+ 45: "#b66839",
465
+ 50: "#c87a4a",
466
+ 55: "#d6905a",
467
+ 60: "#dca275",
468
+ 65: "#e1b288",
469
+ 70: "#e8b894",
470
+ 75: "#ebbf9d",
471
+ 80: "#eecfb5",
472
+ 85: "#efddcd",
473
+ 90: "#f3e5d8",
474
+ 95: "#f9eee5",
475
+ 100: "#ffffff"
476
+ },
477
+ // Pink — H=345 C=22 (rose madder)
478
+ pink: {
479
+ hue: 345,
480
+ chroma: 22,
481
+ 0: "#000000",
482
+ 5: "#22060e",
483
+ 10: "#2e0c16",
484
+ 15: "#3a131e",
485
+ 20: "#71223c",
486
+ 25: "#572235",
487
+ 30: "#8d2d4c",
488
+ 35: "#9b3358",
489
+ 40: "#a04563",
490
+ 45: "#a04a6e",
491
+ 50: "#b15876",
492
+ 55: "#c26988",
493
+ 60: "#cf7593",
494
+ 65: "#d56891",
495
+ 70: "#dc82a4",
496
+ 75: "#e094b1",
497
+ 80: "#e7a5be",
498
+ 85: "#ebb6ca",
499
+ 90: "#eed6df",
500
+ 95: "#f5e3eb",
501
+ 100: "#ffffff"
502
+ },
503
+ // Purple — H=290 C=30 (cathedral plum)
504
+ purple: {
505
+ hue: 290,
506
+ chroma: 30,
507
+ 0: "#000000",
508
+ 5: "#1e0c25",
509
+ 10: "#2a1334",
510
+ 15: "#371b43",
511
+ 20: "#481b58",
512
+ 25: "#502163",
513
+ 30: "#5a2370",
514
+ 35: "#6e3088",
515
+ 40: "#82409c",
516
+ 45: "#9352ad",
517
+ 50: "#a363bd",
518
+ 55: "#b06ec9",
519
+ 60: "#bb7cd1",
520
+ 65: "#c084d6",
521
+ 70: "#c692db",
522
+ 75: "#cd9be0",
523
+ 80: "#d2a3df",
524
+ 85: "#dab3e6",
525
+ 90: "#e6daee",
526
+ 95: "#f0e6f4",
527
+ 100: "#ffffff"
528
+ },
529
+ // Red — H=15 C=12 (dusty rose) — gothic uses a desaturated rose
530
+ // family rather than vibrant crimson; #c6a6a2 sits near T80.
531
+ red: {
532
+ hue: 15,
533
+ chroma: 12,
534
+ 0: "#000000",
535
+ 5: "#1c0d09",
536
+ 10: "#26140f",
537
+ 15: "#301b16",
538
+ 20: "#3a231d",
539
+ 25: "#452c25",
540
+ 30: "#50352d",
541
+ 35: "#5b3e36",
542
+ 40: "#66483e",
543
+ 45: "#725347",
544
+ 50: "#7d5e51",
545
+ 55: "#896a5b",
546
+ 60: "#957565",
547
+ 65: "#a18170",
548
+ 70: "#ad8d7b",
549
+ 75: "#b99a87",
550
+ 80: "#c6a6a2",
551
+ 85: "#d2b4af",
552
+ 90: "#dec2bc",
553
+ 95: "#ebd0ca",
554
+ 100: "#ffffff"
555
+ },
556
+ // Teal — H=170 C=20 (verdigris)
557
+ teal: {
558
+ hue: 170,
559
+ chroma: 20,
560
+ 0: "#000000",
561
+ 5: "#001b14",
562
+ 10: "#062821",
563
+ 15: "#0d3530",
564
+ 20: "#174a40",
565
+ 25: "#194e44",
566
+ 30: "#1f5e52",
567
+ 35: "#2c6c5f",
568
+ 40: "#3a7b6c",
569
+ 45: "#498a7a",
570
+ 50: "#5aa091",
571
+ 55: "#5db5a3",
572
+ 60: "#6cbeab",
573
+ 65: "#7cc5b3",
574
+ 70: "#90d0c0",
575
+ 75: "#9fd4c5",
576
+ 80: "#b1ddcf",
577
+ 85: "#c0e1d6",
578
+ 90: "#d4e7e2",
579
+ 95: "#e1efe9",
580
+ 100: "#ffffff"
581
+ },
582
+ // Yellow — H=80 C=40 (aged gold)
583
+ yellow: {
584
+ hue: 80,
585
+ chroma: 40,
586
+ 0: "#000000",
587
+ 5: "#2c1d00",
588
+ 10: "#3a2900",
589
+ 15: "#4a3500",
590
+ 20: "#6c5010",
591
+ 25: "#6c5010",
592
+ 30: "#876515",
593
+ 35: "#9c7b1f",
594
+ 40: "#b18e2f",
595
+ 45: "#c39e3e",
596
+ 50: "#cca74c",
597
+ 55: "#d6b56a",
598
+ 60: "#dec074",
599
+ 65: "#e2c884",
600
+ 70: "#e6d091",
601
+ 75: "#e9d29a",
602
+ 80: "#ebd9a7",
603
+ 85: "#ebe1c4",
604
+ 90: "#f0e8d6",
605
+ 95: "#f7f1e3",
606
+ 100: "#ffffff"
607
+ }
608
+ };
609
+ export {
610
+ gothicIconRegistry,
611
+ gothicPalettes,
612
+ gothicTheme
613
+ };