@tamagui/themes 1.101.6 → 1.102.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/dist/cjs/v3-themes.js +205 -210
- package/dist/cjs/v3-themes.js.map +1 -1
- package/dist/cjs/v3-themes.native.js +206 -199
- package/dist/cjs/v3-themes.native.js.map +2 -2
- package/dist/esm/v3-themes.js +205 -210
- package/dist/esm/v3-themes.js.map +1 -1
- package/dist/esm/v3-themes.mjs +209 -204
- package/dist/esm/v3-themes.native.js +202 -197
- package/dist/esm/v3-themes.native.js.map +2 -2
- package/package.json +7 -7
- package/src/v3-themes.ts +234 -232
- package/types/v3-themes.d.ts +113 -244
|
@@ -142,7 +142,7 @@ var colorTokens = {
|
|
|
142
142
|
black10: "#626262",
|
|
143
143
|
black11: "#a5a5a5",
|
|
144
144
|
black12: "#fff"
|
|
145
|
-
}, postfixObjKeys(lightColors, "Light"), postfixObjKeys(darkColors, "Dark")),
|
|
145
|
+
}, postfixObjKeys(lightColors, "Light"), postfixObjKeys(darkColors, "Dark")), defaultPalettes = function() {
|
|
146
146
|
var transparent = function(hsl) {
|
|
147
147
|
var opacity = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0;
|
|
148
148
|
return hsl.replace("%)", "%, ".concat(opacity, ")")).replace("hsl(", "hsla(");
|
|
@@ -225,144 +225,147 @@ var colorTokens = {
|
|
|
225
225
|
light: lightPalette,
|
|
226
226
|
dark: darkPalette
|
|
227
227
|
}, colorPalettes);
|
|
228
|
-
}(), getTemplates = function(
|
|
229
|
-
var
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
228
|
+
}(), getTemplates = function() {
|
|
229
|
+
var getBaseTemplates = function(scheme) {
|
|
230
|
+
var isLight = scheme === "light", bgIndex = 5, lighten = isLight ? -1 : 1, darken = -lighten, borderColor = bgIndex + 3, base = {
|
|
231
|
+
accentBackground: 0,
|
|
232
|
+
accentColor: -0,
|
|
233
|
+
background0: 1,
|
|
234
|
+
background025: 2,
|
|
235
|
+
background05: 3,
|
|
236
|
+
background075: 4,
|
|
237
|
+
color1: bgIndex,
|
|
238
|
+
color2: bgIndex + 1,
|
|
239
|
+
color3: bgIndex + 2,
|
|
240
|
+
color4: bgIndex + 3,
|
|
241
|
+
color5: bgIndex + 4,
|
|
242
|
+
color6: bgIndex + 5,
|
|
243
|
+
color7: bgIndex + 6,
|
|
244
|
+
color8: bgIndex + 7,
|
|
245
|
+
color9: bgIndex + 8,
|
|
246
|
+
color10: bgIndex + 9,
|
|
247
|
+
color11: bgIndex + 10,
|
|
248
|
+
color12: bgIndex + 11,
|
|
249
|
+
color0: -1,
|
|
250
|
+
color025: -2,
|
|
251
|
+
color05: -3,
|
|
252
|
+
color075: -4,
|
|
253
|
+
// the background, color, etc keys here work like generics - they make it so you
|
|
254
|
+
// can publish components for others to use without mandating a specific color scale
|
|
255
|
+
// the @tamagui/button Button component looks for `$background`, so you set the
|
|
256
|
+
// dark_red_Button theme to have a stronger background than the dark_red theme.
|
|
257
|
+
background: bgIndex,
|
|
258
|
+
backgroundHover: bgIndex + lighten,
|
|
259
|
+
// always lighten on hover no matter the scheme
|
|
260
|
+
backgroundPress: bgIndex + darken,
|
|
261
|
+
// always darken on press no matter the theme
|
|
262
|
+
backgroundFocus: bgIndex + darken,
|
|
263
|
+
borderColor,
|
|
264
|
+
borderColorHover: borderColor + lighten,
|
|
265
|
+
borderColorPress: borderColor + darken,
|
|
266
|
+
borderColorFocus: borderColor,
|
|
267
|
+
color: -bgIndex,
|
|
268
|
+
colorHover: -bgIndex - 1,
|
|
269
|
+
colorPress: -bgIndex,
|
|
270
|
+
colorFocus: -bgIndex - 1,
|
|
271
|
+
colorTransparent: -1,
|
|
272
|
+
placeholderColor: -bgIndex - 3,
|
|
273
|
+
outlineColor: -2
|
|
274
|
+
}, surface12 = {
|
|
275
|
+
background: base.background + 1,
|
|
276
|
+
backgroundHover: base.backgroundHover + 1,
|
|
277
|
+
backgroundPress: base.backgroundPress + 1,
|
|
278
|
+
backgroundFocus: base.backgroundFocus + 1,
|
|
279
|
+
borderColor: base.borderColor + 1,
|
|
280
|
+
borderColorHover: base.borderColorHover + 1,
|
|
281
|
+
borderColorFocus: base.borderColorFocus + 1,
|
|
282
|
+
borderColorPress: base.borderColorPress + 1
|
|
283
|
+
}, surface22 = {
|
|
284
|
+
background: base.background + 2,
|
|
285
|
+
backgroundHover: base.backgroundHover + 2,
|
|
286
|
+
backgroundPress: base.backgroundPress + 2,
|
|
287
|
+
backgroundFocus: base.backgroundFocus + 2,
|
|
288
|
+
borderColor: base.borderColor + 2,
|
|
289
|
+
borderColorHover: base.borderColorHover + 2,
|
|
290
|
+
borderColorFocus: base.borderColorFocus + 2,
|
|
291
|
+
borderColorPress: base.borderColorPress + 2
|
|
292
|
+
}, surface32 = {
|
|
293
|
+
background: base.background + 3,
|
|
294
|
+
backgroundHover: base.backgroundHover + 3,
|
|
295
|
+
backgroundPress: base.backgroundPress + 3,
|
|
296
|
+
backgroundFocus: base.backgroundFocus + 3,
|
|
297
|
+
borderColor: base.borderColor + 3,
|
|
298
|
+
borderColorHover: base.borderColorHover + 3,
|
|
299
|
+
borderColorFocus: base.borderColorFocus + 3,
|
|
300
|
+
borderColorPress: base.borderColorPress + 3
|
|
301
|
+
}, surfaceActiveBg = {
|
|
302
|
+
background: base.background + 5,
|
|
303
|
+
backgroundHover: base.background + 5,
|
|
304
|
+
backgroundPress: base.backgroundPress + 5,
|
|
305
|
+
backgroundFocus: base.backgroundFocus + 5
|
|
306
|
+
}, surfaceActive = _object_spread_props(_object_spread({}, surfaceActiveBg), {
|
|
307
|
+
// match border to background when active
|
|
308
|
+
borderColor: surfaceActiveBg.background,
|
|
309
|
+
borderColorHover: surfaceActiveBg.backgroundHover,
|
|
310
|
+
borderColorFocus: surfaceActiveBg.backgroundFocus,
|
|
311
|
+
borderColorPress: surfaceActiveBg.backgroundPress
|
|
312
|
+
}), inverseSurface12 = {
|
|
313
|
+
color: surface12.background,
|
|
314
|
+
colorHover: surface12.backgroundHover,
|
|
315
|
+
colorPress: surface12.backgroundPress,
|
|
316
|
+
colorFocus: surface12.backgroundFocus,
|
|
317
|
+
background: base.color,
|
|
318
|
+
backgroundHover: base.colorHover,
|
|
319
|
+
backgroundPress: base.colorPress,
|
|
320
|
+
backgroundFocus: base.colorFocus,
|
|
321
|
+
borderColor: base.color - 2,
|
|
322
|
+
borderColorHover: base.color - 3,
|
|
323
|
+
borderColorFocus: base.color - 4,
|
|
324
|
+
borderColorPress: base.color - 5
|
|
325
|
+
}, inverseActive = _object_spread_props(_object_spread({}, inverseSurface12), {
|
|
326
|
+
background: base.color - 2,
|
|
327
|
+
backgroundHover: base.colorHover - 2,
|
|
328
|
+
backgroundPress: base.colorPress - 2,
|
|
329
|
+
backgroundFocus: base.colorFocus - 2,
|
|
330
|
+
borderColor: base.color - 2 - 2,
|
|
331
|
+
borderColorHover: base.color - 3 - 2,
|
|
332
|
+
borderColorFocus: base.color - 4 - 2,
|
|
333
|
+
borderColorPress: base.color - 5 - 2
|
|
334
|
+
}), alt1 = {
|
|
335
|
+
color: base.color - 1,
|
|
336
|
+
colorHover: base.colorHover - 1,
|
|
337
|
+
colorPress: base.colorPress - 1,
|
|
338
|
+
colorFocus: base.colorFocus - 1
|
|
339
|
+
}, alt2 = {
|
|
340
|
+
color: base.color - 2,
|
|
341
|
+
colorHover: base.colorHover - 2,
|
|
342
|
+
colorPress: base.colorPress - 2,
|
|
343
|
+
colorFocus: base.colorFocus - 2
|
|
344
|
+
};
|
|
345
|
+
return {
|
|
346
|
+
base,
|
|
347
|
+
alt1,
|
|
348
|
+
alt2,
|
|
349
|
+
surface1: surface12,
|
|
350
|
+
surface2: surface22,
|
|
351
|
+
surface3: surface32,
|
|
352
|
+
inverseSurface1: inverseSurface12,
|
|
353
|
+
inverseActive,
|
|
354
|
+
surfaceActive
|
|
355
|
+
};
|
|
356
|
+
}, lightTemplates = getBaseTemplates("light"), darkTemplates = getBaseTemplates("dark"), templates = _object_spread({}, objectFromEntries(objectKeys(lightTemplates).map(function(name) {
|
|
357
|
+
return [
|
|
358
|
+
"light_".concat(name),
|
|
359
|
+
lightTemplates[name]
|
|
360
|
+
];
|
|
361
|
+
})), objectFromEntries(objectKeys(darkTemplates).map(function(name) {
|
|
362
|
+
return [
|
|
363
|
+
"dark_".concat(name),
|
|
364
|
+
darkTemplates[name]
|
|
365
|
+
];
|
|
366
|
+
})));
|
|
367
|
+
return templates;
|
|
368
|
+
}, defaultTemplates = getTemplates(), shadows = {
|
|
366
369
|
light: {
|
|
367
370
|
shadowColor: lightShadowColorStrong,
|
|
368
371
|
shadowColorHover: lightShadowColorStrong,
|
|
@@ -427,7 +430,61 @@ var colorTokens = {
|
|
|
427
430
|
parent: "",
|
|
428
431
|
template: "surface3"
|
|
429
432
|
}
|
|
430
|
-
],
|
|
433
|
+
], componentThemes = {
|
|
434
|
+
ListItem: {
|
|
435
|
+
template: "surface1"
|
|
436
|
+
},
|
|
437
|
+
SelectTrigger: surface1,
|
|
438
|
+
Card: surface1,
|
|
439
|
+
Button: surface3,
|
|
440
|
+
Checkbox: surface2,
|
|
441
|
+
Switch: surface2,
|
|
442
|
+
SwitchThumb: inverseSurface1,
|
|
443
|
+
TooltipContent: surface2,
|
|
444
|
+
Progress: {
|
|
445
|
+
template: "surface1"
|
|
446
|
+
},
|
|
447
|
+
RadioGroupItem: surface2,
|
|
448
|
+
TooltipArrow: {
|
|
449
|
+
template: "surface1"
|
|
450
|
+
},
|
|
451
|
+
SliderTrackActive: {
|
|
452
|
+
template: "surface3"
|
|
453
|
+
},
|
|
454
|
+
SliderTrack: {
|
|
455
|
+
template: "surface1"
|
|
456
|
+
},
|
|
457
|
+
SliderThumb: inverseSurface1,
|
|
458
|
+
Tooltip: inverseSurface1,
|
|
459
|
+
ProgressIndicator: inverseSurface1,
|
|
460
|
+
SheetOverlay: overlayThemeDefinitions,
|
|
461
|
+
DialogOverlay: overlayThemeDefinitions,
|
|
462
|
+
ModalOverlay: overlayThemeDefinitions,
|
|
463
|
+
Input: surface1,
|
|
464
|
+
TextArea: surface1
|
|
465
|
+
}, defaultSubThemes = {
|
|
466
|
+
alt1: {
|
|
467
|
+
template: "alt1"
|
|
468
|
+
},
|
|
469
|
+
alt2: {
|
|
470
|
+
template: "alt2"
|
|
471
|
+
},
|
|
472
|
+
active: {
|
|
473
|
+
template: "surface3"
|
|
474
|
+
},
|
|
475
|
+
surface1: {
|
|
476
|
+
template: "surface1"
|
|
477
|
+
},
|
|
478
|
+
surface2: {
|
|
479
|
+
template: "surface2"
|
|
480
|
+
},
|
|
481
|
+
surface3: {
|
|
482
|
+
template: "surface3"
|
|
483
|
+
},
|
|
484
|
+
surface4: {
|
|
485
|
+
template: "surfaceActive"
|
|
486
|
+
}
|
|
487
|
+
}, themeBuilder = createThemeBuilder().addPalettes(defaultPalettes).addTemplates(defaultTemplates).addThemes({
|
|
431
488
|
light: {
|
|
432
489
|
template: "base",
|
|
433
490
|
palette: "light",
|
|
@@ -471,61 +528,7 @@ var colorTokens = {
|
|
|
471
528
|
palette: "gray",
|
|
472
529
|
template: "base"
|
|
473
530
|
}
|
|
474
|
-
}).addChildThemes({
|
|
475
|
-
alt1: {
|
|
476
|
-
template: "alt1"
|
|
477
|
-
},
|
|
478
|
-
alt2: {
|
|
479
|
-
template: "alt2"
|
|
480
|
-
},
|
|
481
|
-
active: {
|
|
482
|
-
template: "surface3"
|
|
483
|
-
},
|
|
484
|
-
surface1: {
|
|
485
|
-
template: "surface1"
|
|
486
|
-
},
|
|
487
|
-
surface2: {
|
|
488
|
-
template: "surface2"
|
|
489
|
-
},
|
|
490
|
-
surface3: {
|
|
491
|
-
template: "surface3"
|
|
492
|
-
},
|
|
493
|
-
surface4: {
|
|
494
|
-
template: "surfaceActive"
|
|
495
|
-
}
|
|
496
|
-
}).addComponentThemes({
|
|
497
|
-
ListItem: {
|
|
498
|
-
template: "surface1"
|
|
499
|
-
},
|
|
500
|
-
SelectTrigger: surface1,
|
|
501
|
-
Card: surface1,
|
|
502
|
-
Button: surface3,
|
|
503
|
-
Checkbox: surface2,
|
|
504
|
-
Switch: surface2,
|
|
505
|
-
SwitchThumb: inverseSurface1,
|
|
506
|
-
TooltipContent: surface2,
|
|
507
|
-
Progress: {
|
|
508
|
-
template: "surface1"
|
|
509
|
-
},
|
|
510
|
-
RadioGroupItem: surface2,
|
|
511
|
-
TooltipArrow: {
|
|
512
|
-
template: "surface1"
|
|
513
|
-
},
|
|
514
|
-
SliderTrackActive: {
|
|
515
|
-
template: "surface3"
|
|
516
|
-
},
|
|
517
|
-
SliderTrack: {
|
|
518
|
-
template: "surface1"
|
|
519
|
-
},
|
|
520
|
-
SliderThumb: inverseSurface1,
|
|
521
|
-
Tooltip: inverseSurface1,
|
|
522
|
-
ProgressIndicator: inverseSurface1,
|
|
523
|
-
SheetOverlay: overlayThemeDefinitions,
|
|
524
|
-
DialogOverlay: overlayThemeDefinitions,
|
|
525
|
-
ModalOverlay: overlayThemeDefinitions,
|
|
526
|
-
Input: surface1,
|
|
527
|
-
TextArea: surface1
|
|
528
|
-
}, {
|
|
531
|
+
}).addChildThemes(defaultSubThemes).addComponentThemes(componentThemes, {
|
|
529
532
|
avoidNestingWithin: [
|
|
530
533
|
"alt1",
|
|
531
534
|
"alt2",
|
|
@@ -624,10 +627,12 @@ function objectKeys(obj) {
|
|
|
624
627
|
return Object.keys(obj);
|
|
625
628
|
}
|
|
626
629
|
export {
|
|
627
|
-
|
|
630
|
+
componentThemes,
|
|
631
|
+
defaultPalettes,
|
|
632
|
+
defaultSubThemes,
|
|
633
|
+
defaultTemplates,
|
|
628
634
|
objectFromEntries,
|
|
629
635
|
objectKeys,
|
|
630
|
-
palettes,
|
|
631
636
|
postfixObjKeys,
|
|
632
637
|
radius,
|
|
633
638
|
size,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Users/n8/tamagui/code/core/themes/src/v3-themes.ts"],
|
|
4
|
-
"mappings": "AAAA,SACEA,MACAC,UACAC,MACAC,UACAC,OACAC,WACAC,QACAC,YACAC,MACAC,UACAC,QACAC,YACAC,KACAC,SACAC,QACAC,kBACK;AACP,SAASC,0BAA0B;AACnC,SAASC,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE7B,IAAMC,cAAc;EAClBC,OAAO;IACLnB;IACAE;IACAE;IACAE;IACAE;IACAE;IACAE;IACAE;EACF;EACAM,MAAM;IACJpB,MAAMC;IACNC,MAAMC;IACNC,OAAOC;IACPC,QAAQC;IACRC,MAAMC;IACNC,QAAQC;IACRC,KAAKC;IACLC,QAAQC;EACV;AACF,GAEMM,mBAAmB,oBACnBC,yBAAyB,qBACzBC,kBAAkB,mBAClBC,wBAAwB,mBAExBC,aAAa,eAAA,CAAA,GACdP,YAAYE,KAAKpB,MACjBkB,YAAYE,KAAKlB,MACjBgB,YAAYE,KAAKhB,OACjBc,YAAYE,KAAKd,QACjBY,YAAYE,KAAKZ,MACjBU,YAAYE,KAAKV,QACjBQ,YAAYE,KAAKR,KACjBM,YAAYE,KAAKN,MAAM,GAGtBY,cAAc,eAAA,CAAA,GACfR,YAAYC,MAAMnB,MAClBkB,YAAYC,MAAMjB,MAClBgB,YAAYC,MAAMf,OAClBc,YAAYC,MAAMb,QAClBY,YAAYC,MAAMX,MAClBU,YAAYC,MAAMT,QAClBQ,YAAYC,MAAMP,KAClBM,YAAYC,MAAML,MAAM,GAGvBa,QAAQ,eAAA;EACZC,QAAQ;EACRC,UAAU;EACVC,SAAS;EACTC,UAAU;EACVC,QAAQ;EACRC,UAAU;EACVC,SAAS;EACTC,UAAU;EACVC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,SAAS;EACTC,SAAS;EACTC,SAAS;EACTC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,QAAQ;EACRC,SAAS;EACTC,SAAS;EACTC,SAAS;GACNC,eAAelC,aAAa,OAAA,GAC5BkC,eAAenC,YAAY,MAAA,CAAA,GAGnBoC,
|
|
5
|
-
"names": ["blue", "blueDark", "gray", "grayDark", "green", "greenDark", "orange", "orangeDark", "pink", "pinkDark", "purple", "purpleDark", "red", "redDark", "yellow", "yellowDark", "createThemeBuilder", "createTokens", "colorTokens", "light", "dark", "lightShadowColor", "lightShadowColorStrong", "darkShadowColor", "darkShadowColorStrong", "darkColors", "lightColors", "color", "white0", "white075", "white05", "white025", "black0", "black075", "black05", "black025", "white1", "white2", "white3", "white4", "white5", "white6", "white7", "white8", "white9", "white10", "white11", "white12", "black1", "black2", "black3", "black4", "black5", "black6", "black7", "black8", "black9", "black10", "black11", "black12", "postfixObjKeys", "
|
|
4
|
+
"mappings": "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",
|
|
5
|
+
"names": ["blue", "blueDark", "gray", "grayDark", "green", "greenDark", "orange", "orangeDark", "pink", "pinkDark", "purple", "purpleDark", "red", "redDark", "yellow", "yellowDark", "createThemeBuilder", "createTokens", "colorTokens", "light", "dark", "lightShadowColor", "lightShadowColorStrong", "darkShadowColor", "darkShadowColorStrong", "darkColors", "lightColors", "color", "white0", "white075", "white05", "white025", "black0", "black075", "black05", "black025", "white1", "white2", "white3", "white4", "white5", "white6", "white7", "white8", "white9", "white10", "white11", "white12", "black1", "black2", "black3", "black4", "black5", "black6", "black7", "black8", "black9", "black10", "black11", "black12", "postfixObjKeys", "defaultPalettes", "transparent", "hsl", "opacity", "replace", "getColorPalette", "colors", "accentColors", "colorPalette", "Object", "values", "colorI", "length", "accentPalette", "accentBackground", "accentColor", "brandColor", "blue4Light", "blue4Dark", "lightPalette", "darkPalette", "lightColorNames", "objectKeys", "lightPalettes", "objectFromEntries", "map", "key", "index", "darkColorNames", "darkPalettes", "colorPalettes", "getTemplates", "getBaseTemplates", "scheme", "isLight", "bgIndex", "lighten", "darken", "borderColor", "base", "background0", "background025", "background05", "background075", "color1", "color2", "color3", "color4", "color5", "color6", "color7", "color8", "color9", "color10", "color11", "color12", "color0", "color025", "color05", "color075", "background", "backgroundHover", "backgroundPress", "backgroundFocus", "borderColorHover", "borderColorPress", "borderColorFocus", "colorHover", "colorPress", "colorFocus", "colorTransparent", "placeholderColor", "outlineColor", "surface1", "surface2", "surface3", "surfaceActiveBg", "surfaceActive", "inverseSurface1", "inverseActive", "alt1", "alt2", "lightTemplates", "darkTemplates", "templates", "name", "defaultTemplates", "shadows", "shadowColor", "shadowColorHover", "shadowColorPress", "shadowColorFocus", "nonInherited", "overlayThemeDefinitions", "parent", "theme", "template", "componentThemes", "ListItem", "SelectTrigger", "Card", "Button", "Checkbox", "Switch", "SwitchThumb", "TooltipContent", "Progress", "RadioGroupItem", "TooltipArrow", "SliderTrackActive", "SliderTrack", "SliderThumb", "Tooltip", "ProgressIndicator", "SheetOverlay", "DialogOverlay", "ModalOverlay", "Input", "TextArea", "defaultSubThemes", "active", "surface4", "themeBuilder", "addPalettes", "addTemplates", "addThemes", "palette", "nonInheritedValues", "addChildThemes", "addComponentThemes", "avoidNestingWithin", "themesIn", "build", "themes", "size", "$0", "$1", "$2", "$3", "$4", "$true", "$5", "$6", "$7", "$8", "$9", "$10", "$11", "$12", "$13", "$14", "$15", "$16", "$17", "$18", "$19", "$20", "spaces", "entries", "k", "v", "sizeToSpace", "spacesNegative", "slice", "space", "fromEntries", "zIndex", "radius", "true", "tokens", "obj", "postfix", "Math", "round", "floor", "arr", "keys"]
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/themes",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.102.0",
|
|
4
4
|
"types": "./types/index.d.ts",
|
|
5
5
|
"main": "dist/cjs",
|
|
6
6
|
"module": "dist/esm",
|
|
@@ -52,14 +52,14 @@
|
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@tamagui/colors": "1.
|
|
56
|
-
"@tamagui/create-theme": "1.
|
|
57
|
-
"@tamagui/theme-builder": "1.
|
|
58
|
-
"@tamagui/web": "1.
|
|
55
|
+
"@tamagui/colors": "1.102.0",
|
|
56
|
+
"@tamagui/create-theme": "1.102.0",
|
|
57
|
+
"@tamagui/theme-builder": "1.102.0",
|
|
58
|
+
"@tamagui/web": "1.102.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@tamagui/build": "1.
|
|
62
|
-
"@tamagui/cli": "1.
|
|
61
|
+
"@tamagui/build": "1.102.0",
|
|
62
|
+
"@tamagui/cli": "1.102.0",
|
|
63
63
|
"vitest": "^0.34.3"
|
|
64
64
|
},
|
|
65
65
|
"publishConfig": {
|