@rakeyshgidwani/roger-ui-bank-theme-jeremy 0.5.3 → 0.7.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/CHANGELOG.md +1 -1
- package/dist/styles.css +228 -213
- package/dist/theme.d.ts.map +1 -1
- package/dist/theme.esm.js +177 -174
- package/dist/theme.js +177 -174
- package/dist/themes/seedColors.d.ts +93 -0
- package/dist/themes/seedColors.d.ts.map +1 -0
- package/dist/themes/seedColors.esm.js +37 -0
- package/dist/themes/seedColors.js +37 -0
- package/dist/themes/themes/jeremy.d.ts.map +1 -1
- package/dist/themes/themes/jeremy.esm.js +177 -174
- package/dist/themes/themes/jeremy.js +177 -174
- package/package.json +1 -1
- package/src/styles/themes/jeremy.css +227 -212
- package/src/theme.ts +180 -177
- package/src/themes/seedColors.ts +111 -0
- package/src/themes/themes/jeremy.ts +180 -177
package/src/theme.ts
CHANGED
|
@@ -163,102 +163,102 @@ export const jeremyTheme: MultiThemeConfig = {
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
},
|
|
166
|
-
|
|
166
|
+
colors: {
|
|
167
167
|
primary: {
|
|
168
|
-
50: '#
|
|
169
|
-
100: '#
|
|
170
|
-
200: '#
|
|
171
|
-
300: '#
|
|
172
|
-
400: '#
|
|
173
|
-
500: '#
|
|
174
|
-
600: '#
|
|
175
|
-
700: '#
|
|
176
|
-
800: '#
|
|
177
|
-
900: '#
|
|
178
|
-
|
|
179
|
-
'
|
|
180
|
-
'
|
|
181
|
-
'700-rgb': '117, 39, 55'
|
|
168
|
+
'50': '#F2F2F2',
|
|
169
|
+
'100': '#E6E6E6',
|
|
170
|
+
'200': '#CCCCCC',
|
|
171
|
+
'300': '#B3B3B3',
|
|
172
|
+
'400': '#999999',
|
|
173
|
+
'500': '#1E1E1E',
|
|
174
|
+
'600': '#666666',
|
|
175
|
+
'700': '#4D4D4D',
|
|
176
|
+
'800': '#383838',
|
|
177
|
+
'900': '#242424',
|
|
178
|
+
'500-rgb': '30, 30, 30',
|
|
179
|
+
'600-rgb': '102, 102, 102',
|
|
180
|
+
'700-rgb': '77, 77, 77',
|
|
182
181
|
},
|
|
183
182
|
secondary: {
|
|
184
|
-
50: '#
|
|
185
|
-
100: '#
|
|
186
|
-
200: '#
|
|
187
|
-
300: '#
|
|
188
|
-
400: '#
|
|
189
|
-
500: '#
|
|
190
|
-
600: '#
|
|
191
|
-
700: '#
|
|
192
|
-
800: '#
|
|
193
|
-
900: '#
|
|
183
|
+
'50': '#F8F5EC',
|
|
184
|
+
'100': '#F3ECD8',
|
|
185
|
+
'200': '#E9DAAF',
|
|
186
|
+
'300': '#E2C983',
|
|
187
|
+
'400': '#DDB955',
|
|
188
|
+
'500': '#E8CF8A',
|
|
189
|
+
'600': '#AA8622',
|
|
190
|
+
'700': '#7C631D',
|
|
191
|
+
'800': '#584718',
|
|
192
|
+
'900': '#362C11',
|
|
193
|
+
'500-rgb': '232, 207, 138',
|
|
194
|
+
'600-rgb': '170, 134, 34',
|
|
195
|
+
'700-rgb': '124, 99, 29',
|
|
194
196
|
},
|
|
195
197
|
semantic: {
|
|
196
198
|
success: '#1E824C',
|
|
197
|
-
warning: '#
|
|
199
|
+
warning: '#D99A3E',
|
|
198
200
|
error: '#D93025',
|
|
199
|
-
errorDark: '#
|
|
200
|
-
info: '#
|
|
201
|
-
// RGB versions for rgba() usage
|
|
201
|
+
errorDark: '#6D1912',
|
|
202
|
+
info: '#2563EB',
|
|
202
203
|
successRgb: '30, 130, 76',
|
|
203
|
-
warningRgb: '
|
|
204
|
+
warningRgb: '217, 154, 62',
|
|
204
205
|
errorRgb: '217, 48, 37',
|
|
205
|
-
errorDarkRgb: '
|
|
206
|
-
infoRgb: '
|
|
207
|
-
// Additional RGB versions referenced in CSS
|
|
206
|
+
errorDarkRgb: '109, 25, 18',
|
|
207
|
+
infoRgb: '37, 99, 235',
|
|
208
208
|
'success-rgb': '30, 130, 76',
|
|
209
|
-
'warning-rgb': '
|
|
209
|
+
'warning-rgb': '217, 154, 62',
|
|
210
210
|
'error-rgb': '217, 48, 37',
|
|
211
|
-
'error-dark-rgb': '
|
|
212
|
-
'info-rgb': '
|
|
211
|
+
'error-dark-rgb': '109, 25, 18',
|
|
212
|
+
'info-rgb': '37, 99, 235',
|
|
213
213
|
},
|
|
214
214
|
neutral: {
|
|
215
|
-
50: '#FAFAFA',
|
|
216
|
-
100: '#
|
|
217
|
-
200: '#
|
|
218
|
-
300: '#
|
|
219
|
-
400: '#
|
|
220
|
-
500: '#
|
|
221
|
-
600: '#
|
|
222
|
-
700: '#
|
|
223
|
-
800: '#
|
|
224
|
-
900: '#
|
|
215
|
+
'50': '#FAFAFA',
|
|
216
|
+
'100': '#F5F4F4',
|
|
217
|
+
'200': '#E9E7E7',
|
|
218
|
+
'300': '#D3CFCF',
|
|
219
|
+
'400': '#B9B1B1',
|
|
220
|
+
'500': '#9E9494',
|
|
221
|
+
'600': '#817474',
|
|
222
|
+
'700': '#605757',
|
|
223
|
+
'800': '#403A3A',
|
|
224
|
+
'900': '#201D1D',
|
|
225
225
|
},
|
|
226
226
|
surface: {
|
|
227
|
-
background: '#
|
|
227
|
+
background: '#F9F9F9',
|
|
228
228
|
surface: '#FFFFFF',
|
|
229
|
-
border: '#
|
|
230
|
-
divider: '#
|
|
229
|
+
border: '#E9E1CB',
|
|
230
|
+
divider: '#F4F0E6',
|
|
231
231
|
},
|
|
232
232
|
text: {
|
|
233
|
-
primary: '#
|
|
234
|
-
secondary: '#
|
|
235
|
-
muted: '#
|
|
233
|
+
primary: '#242424',
|
|
234
|
+
secondary: '#4D4D4D',
|
|
235
|
+
muted: '#9E9494',
|
|
236
236
|
inverse: '#FFFFFF',
|
|
237
237
|
onPrimary: '#FFFFFF',
|
|
238
|
-
onSecondary: '#
|
|
239
|
-
onSurface: '#
|
|
238
|
+
onSecondary: '#242424',
|
|
239
|
+
onSurface: '#242424',
|
|
240
240
|
},
|
|
241
241
|
interactive: {
|
|
242
|
-
hover: '#
|
|
243
|
-
active: '#
|
|
244
|
-
focus: '#
|
|
245
|
-
disabled: '#
|
|
242
|
+
hover: '#666666',
|
|
243
|
+
active: '#383838',
|
|
244
|
+
focus: '#1E1E1E',
|
|
245
|
+
disabled: '#D3CFCF',
|
|
246
246
|
},
|
|
247
247
|
// Additional colors referenced in CSS
|
|
248
|
-
accent: '#
|
|
249
|
-
'bg-primary': '#
|
|
250
|
-
'bg-secondary': '#
|
|
251
|
-
'surface-bg': '#
|
|
248
|
+
accent: '#E2C983',
|
|
249
|
+
'bg-primary': '#F2F2F2',
|
|
250
|
+
'bg-secondary': '#F3ECD8',
|
|
251
|
+
'surface-bg': '#F9F9F9',
|
|
252
252
|
// Additional missing CSS variables
|
|
253
|
-
'primary-hover': '#
|
|
254
|
-
'primary-active': '#
|
|
255
|
-
'accent-rgb': '
|
|
256
|
-
'border': '#
|
|
253
|
+
'primary-hover': '#666666',
|
|
254
|
+
'primary-active': '#383838',
|
|
255
|
+
'accent-rgb': '226, 201, 131',
|
|
256
|
+
'border': '#E9E1CB',
|
|
257
257
|
// Border semantic variables
|
|
258
258
|
'border-transparent': 'transparent',
|
|
259
259
|
// Text colors referenced in CSS
|
|
260
|
-
'text-primary': '#
|
|
261
|
-
'text-secondary': '#
|
|
260
|
+
'text-primary': '#242424',
|
|
261
|
+
'text-secondary': '#4D4D4D'
|
|
262
262
|
},
|
|
263
263
|
navigation: {
|
|
264
264
|
layout: 'horizontal',
|
|
@@ -320,67 +320,67 @@ export const jeremyTheme: MultiThemeConfig = {
|
|
|
320
320
|
colors: {
|
|
321
321
|
background: {
|
|
322
322
|
primary: '#ffffff',
|
|
323
|
-
secondary: '#
|
|
323
|
+
secondary: '#F8F5EC',
|
|
324
324
|
tertiary: '#FAFAFA',
|
|
325
325
|
light: '#ffffff',
|
|
326
|
-
dark: '#
|
|
327
|
-
contrast: '#000000'
|
|
326
|
+
dark: '#242424',
|
|
327
|
+
contrast: '#000000',
|
|
328
328
|
},
|
|
329
329
|
text: {
|
|
330
|
-
primary: '#
|
|
331
|
-
secondary: '#
|
|
332
|
-
tertiary: '#
|
|
333
|
-
light: '#
|
|
334
|
-
dark: '#
|
|
335
|
-
contrast: '#ffffff'
|
|
330
|
+
primary: '#242424',
|
|
331
|
+
secondary: '#4D4D4D',
|
|
332
|
+
tertiary: '#9E9494',
|
|
333
|
+
light: '#B9B1B1',
|
|
334
|
+
dark: '#242424',
|
|
335
|
+
contrast: '#ffffff',
|
|
336
336
|
},
|
|
337
337
|
border: {
|
|
338
|
-
primary: '#
|
|
339
|
-
secondary: '#
|
|
340
|
-
tertiary: '#
|
|
341
|
-
light: '#
|
|
342
|
-
dark: '#
|
|
343
|
-
contrast: '#000000'
|
|
338
|
+
primary: '#E9DAAF',
|
|
339
|
+
secondary: '#F3ECD8',
|
|
340
|
+
tertiary: '#B9B1B1',
|
|
341
|
+
light: '#F5F4F4',
|
|
342
|
+
dark: '#4D4D4D',
|
|
343
|
+
contrast: '#000000',
|
|
344
344
|
},
|
|
345
345
|
accent: {
|
|
346
|
-
primary: '#
|
|
347
|
-
secondary: '#
|
|
348
|
-
tertiary: '#
|
|
349
|
-
light: '#
|
|
350
|
-
dark: '#
|
|
351
|
-
contrast: '#ffffff'
|
|
346
|
+
primary: '#1E1E1E',
|
|
347
|
+
secondary: '#666666',
|
|
348
|
+
tertiary: '#4D4D4D',
|
|
349
|
+
light: '#CCCCCC',
|
|
350
|
+
dark: '#666666',
|
|
351
|
+
contrast: '#ffffff',
|
|
352
352
|
},
|
|
353
353
|
hover: {
|
|
354
|
-
primary: '#
|
|
354
|
+
primary: '#F8F5EC',
|
|
355
355
|
secondary: '#FAFAFA',
|
|
356
|
-
tertiary: '#
|
|
356
|
+
tertiary: '#F5F4F4',
|
|
357
357
|
light: '#ffffff',
|
|
358
|
-
dark: '#
|
|
359
|
-
contrast: '#
|
|
358
|
+
dark: '#383838',
|
|
359
|
+
contrast: '#F8F5EC',
|
|
360
360
|
},
|
|
361
361
|
active: {
|
|
362
|
-
primary: '#
|
|
363
|
-
secondary: '#
|
|
364
|
-
tertiary: '#
|
|
365
|
-
light: '#
|
|
366
|
-
dark: '#
|
|
367
|
-
contrast: '#ffffff'
|
|
362
|
+
primary: '#1E1E1E',
|
|
363
|
+
secondary: '#666666',
|
|
364
|
+
tertiary: '#4D4D4D',
|
|
365
|
+
light: '#CCCCCC',
|
|
366
|
+
dark: '#666666',
|
|
367
|
+
contrast: '#ffffff',
|
|
368
368
|
},
|
|
369
369
|
disabled: {
|
|
370
|
-
primary: '#
|
|
371
|
-
secondary: '#
|
|
372
|
-
tertiary: '#
|
|
370
|
+
primary: '#F5F4F4',
|
|
371
|
+
secondary: '#E9E7E7',
|
|
372
|
+
tertiary: '#D3CFCF',
|
|
373
373
|
light: '#FAFAFA',
|
|
374
|
-
dark: '#
|
|
375
|
-
contrast: '#
|
|
374
|
+
dark: '#9E9494',
|
|
375
|
+
contrast: '#B9B1B1',
|
|
376
376
|
},
|
|
377
377
|
focus: {
|
|
378
|
-
primary: '#
|
|
379
|
-
secondary: '#
|
|
380
|
-
tertiary: '#
|
|
381
|
-
light: '#
|
|
382
|
-
dark: '#
|
|
383
|
-
contrast: '#ffffff'
|
|
378
|
+
primary: '#1E1E1E',
|
|
379
|
+
secondary: '#666666',
|
|
380
|
+
tertiary: '#4D4D4D',
|
|
381
|
+
light: '#CCCCCC',
|
|
382
|
+
dark: '#666666',
|
|
383
|
+
contrast: '#ffffff',
|
|
384
384
|
}
|
|
385
385
|
},
|
|
386
386
|
typography: {
|
|
@@ -458,12 +458,12 @@ export const jeremyTheme: MultiThemeConfig = {
|
|
|
458
458
|
grid: '1.5rem'
|
|
459
459
|
}
|
|
460
460
|
},
|
|
461
|
-
|
|
461
|
+
shadows: {
|
|
462
462
|
sm: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)',
|
|
463
463
|
md: '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)',
|
|
464
464
|
lg: '0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)',
|
|
465
465
|
xl: '0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)',
|
|
466
|
-
'2xl': '0 25px 50px -12px rgb(
|
|
466
|
+
'2xl': '0 25px 50px -12px rgb(30 30 30 / 0.25)',
|
|
467
467
|
inner: 'inset 0 2px 4px 0 rgb(0 0 0 / 0.06)',
|
|
468
468
|
none: '0 0 #0000'
|
|
469
469
|
},
|
|
@@ -566,8 +566,8 @@ export const jeremyTheme: MultiThemeConfig = {
|
|
|
566
566
|
color: 'rgba(255, 255, 255, 0.2)'
|
|
567
567
|
},
|
|
568
568
|
meta: {
|
|
569
|
-
name: 'Jeremy',
|
|
570
|
-
description: 'Modern, vibrant design system with
|
|
569
|
+
name: 'Jeremy Theme',
|
|
570
|
+
description: 'Modern, vibrant design system with warm burgundy/gold color palette for creative projects',
|
|
571
571
|
author: 'Jeremy Design Team',
|
|
572
572
|
version: '1.0.0',
|
|
573
573
|
category: 'creative',
|
|
@@ -577,37 +577,39 @@ export const jeremyTheme: MultiThemeConfig = {
|
|
|
577
577
|
updatedAt: '2024-12-25T00:00:00.000Z'
|
|
578
578
|
},
|
|
579
579
|
|
|
580
|
-
|
|
580
|
+
// NEW: Add dark mode overrides
|
|
581
581
|
modes: {
|
|
582
582
|
dark: {
|
|
583
583
|
colors: {
|
|
584
584
|
primary: {
|
|
585
|
-
50: '#
|
|
586
|
-
100: '#
|
|
587
|
-
200: '#
|
|
588
|
-
300: '#
|
|
589
|
-
400: '#
|
|
590
|
-
500: '#
|
|
591
|
-
600: '#
|
|
592
|
-
700: '#
|
|
593
|
-
800: '#
|
|
594
|
-
900: '#
|
|
595
|
-
|
|
596
|
-
'
|
|
597
|
-
'
|
|
598
|
-
'700-rgb': '217, 125, 125'
|
|
585
|
+
'50': '#242424',
|
|
586
|
+
'100': '#383838',
|
|
587
|
+
'200': '#4D4D4D',
|
|
588
|
+
'300': '#666666',
|
|
589
|
+
'400': '#1E1E1E',
|
|
590
|
+
'500': '#1E1E1E',
|
|
591
|
+
'600': '#999999',
|
|
592
|
+
'700': '#B3B3B3',
|
|
593
|
+
'800': '#CCCCCC',
|
|
594
|
+
'900': '#E6E6E6',
|
|
595
|
+
'500-rgb': '30, 30, 30',
|
|
596
|
+
'600-rgb': '153, 153, 153',
|
|
597
|
+
'700-rgb': '179, 179, 179',
|
|
599
598
|
},
|
|
600
599
|
secondary: {
|
|
601
|
-
50: '#
|
|
602
|
-
100: '#
|
|
603
|
-
200: '#
|
|
604
|
-
300: '#
|
|
605
|
-
400: '#
|
|
606
|
-
500: '#
|
|
607
|
-
600: '#
|
|
608
|
-
700: '#
|
|
609
|
-
800: '#
|
|
610
|
-
900: '#
|
|
600
|
+
'50': '#362C11',
|
|
601
|
+
'100': '#584718',
|
|
602
|
+
'200': '#7C631D',
|
|
603
|
+
'300': '#AA8622',
|
|
604
|
+
'400': '#E8CF8A',
|
|
605
|
+
'500': '#E8CF8A',
|
|
606
|
+
'600': '#DDB955',
|
|
607
|
+
'700': '#E2C983',
|
|
608
|
+
'800': '#E9DAAF',
|
|
609
|
+
'900': '#F3ECD8',
|
|
610
|
+
'500-rgb': '232, 207, 138',
|
|
611
|
+
'600-rgb': '221, 185, 85',
|
|
612
|
+
'700-rgb': '226, 201, 131',
|
|
611
613
|
},
|
|
612
614
|
semantic: {
|
|
613
615
|
success: '#34D399',
|
|
@@ -615,65 +617,66 @@ export const jeremyTheme: MultiThemeConfig = {
|
|
|
615
617
|
error: '#F87171',
|
|
616
618
|
errorDark: '#B91C1C',
|
|
617
619
|
info: '#60A5FA',
|
|
618
|
-
// RGB versions for rgba() usage
|
|
619
620
|
successRgb: '52, 211, 153',
|
|
620
621
|
warningRgb: '251, 191, 36',
|
|
621
622
|
errorRgb: '248, 113, 113',
|
|
622
623
|
errorDarkRgb: '185, 28, 28',
|
|
623
624
|
infoRgb: '96, 165, 250',
|
|
624
|
-
// Additional RGB versions referenced in CSS
|
|
625
625
|
'success-rgb': '52, 211, 153',
|
|
626
626
|
'warning-rgb': '251, 191, 36',
|
|
627
627
|
'error-rgb': '248, 113, 113',
|
|
628
628
|
'error-dark-rgb': '185, 28, 28',
|
|
629
|
-
'info-rgb': '96, 165, 250'
|
|
629
|
+
'info-rgb': '96, 165, 250',
|
|
630
630
|
},
|
|
631
631
|
neutral: {
|
|
632
|
-
50: '#
|
|
633
|
-
100: '#
|
|
634
|
-
200: '#
|
|
635
|
-
300: '#
|
|
636
|
-
400: '#
|
|
637
|
-
500: '#
|
|
638
|
-
600: '#
|
|
639
|
-
700: '#
|
|
640
|
-
800: '#
|
|
641
|
-
900: '#
|
|
632
|
+
'50': '#201D1D',
|
|
633
|
+
'100': '#403A3A',
|
|
634
|
+
'200': '#605757',
|
|
635
|
+
'300': '#817474',
|
|
636
|
+
'400': '#9E9494',
|
|
637
|
+
'500': '#9E9494',
|
|
638
|
+
'600': '#B9B1B1',
|
|
639
|
+
'700': '#D3CFCF',
|
|
640
|
+
'800': '#E9E7E7',
|
|
641
|
+
'900': '#F5F4F4',
|
|
642
|
+
'500-rgb': '158, 148, 148',
|
|
643
|
+
'600-rgb': '185, 177, 177',
|
|
644
|
+
'700-rgb': '211, 207, 207',
|
|
642
645
|
},
|
|
643
646
|
surface: {
|
|
644
|
-
background: '#
|
|
645
|
-
surface: '#
|
|
646
|
-
border: '#
|
|
647
|
-
divider: '#
|
|
647
|
+
background: '#1E1E1E',
|
|
648
|
+
surface: '#242424',
|
|
649
|
+
border: '#1F1F1F',
|
|
650
|
+
divider: '#383838',
|
|
648
651
|
},
|
|
649
652
|
text: {
|
|
650
|
-
primary: '#
|
|
651
|
-
secondary: '#
|
|
652
|
-
muted: '#
|
|
653
|
-
inverse: '#
|
|
654
|
-
onPrimary: '#
|
|
655
|
-
onSecondary: '#
|
|
656
|
-
onSurface: '#
|
|
653
|
+
primary: '#FFFFFF',
|
|
654
|
+
secondary: '#DDB955',
|
|
655
|
+
muted: '#B9B1B1',
|
|
656
|
+
inverse: '#1E1E1E',
|
|
657
|
+
onPrimary: '#1E1E1E',
|
|
658
|
+
onSecondary: '#1E1E1E',
|
|
659
|
+
onSurface: '#FFFFFF',
|
|
657
660
|
},
|
|
658
661
|
interactive: {
|
|
659
|
-
hover: '#
|
|
660
|
-
active: '#
|
|
661
|
-
focus: '#
|
|
662
|
-
disabled: '#
|
|
662
|
+
hover: '#1E1E1E',
|
|
663
|
+
active: '#666666',
|
|
664
|
+
focus: '#999999',
|
|
665
|
+
disabled: '#1F1F1F',
|
|
663
666
|
},
|
|
664
667
|
// Additional colors referenced in CSS
|
|
665
|
-
accent: '#
|
|
666
|
-
'bg-primary': '#
|
|
667
|
-
'bg-secondary': '#
|
|
668
|
-
'surface-bg': '#
|
|
668
|
+
accent: '#DDB955',
|
|
669
|
+
'bg-primary': '#242424',
|
|
670
|
+
'bg-secondary': '#584718',
|
|
671
|
+
'surface-bg': '#1E1E1E',
|
|
669
672
|
// Additional missing CSS variables
|
|
670
|
-
'primary-hover': '#
|
|
671
|
-
'primary-active': '#
|
|
672
|
-
'accent-rgb': '
|
|
673
|
-
'border': '#
|
|
673
|
+
'primary-hover': '#999999',
|
|
674
|
+
'primary-active': '#B3B3B3',
|
|
675
|
+
'accent-rgb': '221, 185, 85',
|
|
676
|
+
'border': '#1F1F1F',
|
|
674
677
|
// Text colors referenced in CSS
|
|
675
|
-
'text-primary': '#
|
|
676
|
-
'text-secondary': '#
|
|
678
|
+
'text-primary': '#FFFFFF',
|
|
679
|
+
'text-secondary': '#DDB955'
|
|
677
680
|
}
|
|
678
681
|
}
|
|
679
682
|
},
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Theme Seed Colors Type Definition
|
|
3
|
+
*
|
|
4
|
+
* This defines the minimal set of colors needed to generate a complete theme.
|
|
5
|
+
* From these 7-9 seed colors, all other colors (50-900 scales, surface, text,
|
|
6
|
+
* interactive states) are automatically derived.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Light mode seed colors - the minimal input needed
|
|
11
|
+
*/
|
|
12
|
+
export interface LightModeSeedColors {
|
|
13
|
+
/** Primary brand color (base 500 value) - e.g., '#A3485A' */
|
|
14
|
+
primary: string;
|
|
15
|
+
|
|
16
|
+
/** Secondary brand color (base 500 value) - e.g., '#D9BA71' */
|
|
17
|
+
secondary: string;
|
|
18
|
+
|
|
19
|
+
/** Neutral gray color (base 500 value) - e.g., '#999999' */
|
|
20
|
+
neutral?: string;
|
|
21
|
+
|
|
22
|
+
/** Success color - e.g., '#1E824C' */
|
|
23
|
+
success: string;
|
|
24
|
+
|
|
25
|
+
/** Warning color - e.g., '#E6A23C' */
|
|
26
|
+
warning: string;
|
|
27
|
+
|
|
28
|
+
/** Error color - e.g., '#D93025' */
|
|
29
|
+
error: string;
|
|
30
|
+
|
|
31
|
+
/** Info color - e.g., '#007BCE' */
|
|
32
|
+
info: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Dark mode seed colors - overrides for dark mode
|
|
37
|
+
*/
|
|
38
|
+
export interface DarkModeSeedColors {
|
|
39
|
+
/** Dark mode background color - e.g., '#1B0D0D' */
|
|
40
|
+
background: string;
|
|
41
|
+
|
|
42
|
+
/** Dark mode primary text color - e.g., '#F5DAA7' */
|
|
43
|
+
textPrimary: string;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Theme metadata
|
|
48
|
+
*/
|
|
49
|
+
export interface ThemeSeedMetadata {
|
|
50
|
+
/** Theme name (kebab-case) - e.g., 'jeremy' */
|
|
51
|
+
name: string;
|
|
52
|
+
|
|
53
|
+
/** Theme display name - e.g., 'Jeremy Theme' */
|
|
54
|
+
displayName?: string;
|
|
55
|
+
|
|
56
|
+
/** Theme description */
|
|
57
|
+
description?: string;
|
|
58
|
+
|
|
59
|
+
/** Theme author */
|
|
60
|
+
author?: string;
|
|
61
|
+
|
|
62
|
+
/** Theme category */
|
|
63
|
+
category?: 'brand' | 'creative' | 'custom' | 'accessibility';
|
|
64
|
+
|
|
65
|
+
/** Theme tags for searchability */
|
|
66
|
+
tags?: string[];
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Complete theme seed configuration
|
|
71
|
+
*/
|
|
72
|
+
export interface ThemeSeedConfig {
|
|
73
|
+
/** Theme metadata */
|
|
74
|
+
meta: ThemeSeedMetadata;
|
|
75
|
+
|
|
76
|
+
/** Light mode seed colors (required) */
|
|
77
|
+
light: LightModeSeedColors;
|
|
78
|
+
|
|
79
|
+
/** Dark mode seed colors (optional - will use inverted light colors if not provided) */
|
|
80
|
+
dark?: DarkModeSeedColors;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Example seed configuration:
|
|
85
|
+
*
|
|
86
|
+
* ```typescript
|
|
87
|
+
* const jeremySeeds: ThemeSeedConfig = {
|
|
88
|
+
* meta: {
|
|
89
|
+
* name: 'jeremy',
|
|
90
|
+
* displayName: 'Jeremy Theme',
|
|
91
|
+
* description: 'A warm burgundy and gold theme',
|
|
92
|
+
* author: 'Design Team',
|
|
93
|
+
* category: 'creative',
|
|
94
|
+
* tags: ['warm', 'burgundy', 'gold']
|
|
95
|
+
* },
|
|
96
|
+
* light: {
|
|
97
|
+
* primary: '#A3485A',
|
|
98
|
+
* secondary: '#D9BA71',
|
|
99
|
+
* neutral: '#999999',
|
|
100
|
+
* success: '#1E824C',
|
|
101
|
+
* warning: '#E6A23C',
|
|
102
|
+
* error: '#D93025',
|
|
103
|
+
* info: '#007BCE'
|
|
104
|
+
* },
|
|
105
|
+
* dark: {
|
|
106
|
+
* background: '#1B0D0D',
|
|
107
|
+
* textPrimary: '#F5DAA7'
|
|
108
|
+
* }
|
|
109
|
+
* };
|
|
110
|
+
* ```
|
|
111
|
+
*/
|