kaleido-ui 0.1.86 → 0.1.87

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.
@@ -30,6 +30,7 @@ __export(tokens_exports, {
30
30
  fontWeight: () => fontWeight,
31
31
  gradient: () => gradient,
32
32
  iconBoxSize: () => iconBoxSize,
33
+ iconColors: () => iconColors,
33
34
  iconSize: () => iconSize,
34
35
  keyframes: () => keyframes,
35
36
  layer: () => layer,
@@ -605,6 +606,37 @@ var themes = { light, dark };
605
606
  function makeTheme(mode) {
606
607
  return themes[mode];
607
608
  }
609
+
610
+ // src/tokens/icon-colors.generated.ts
611
+ var iconColors = {
612
+ "arbitrum": "#1C3249",
613
+ "avalanche": "#E84142",
614
+ "bitcoin": "#F7931A",
615
+ "bnb": "#F3BA2E",
616
+ "btc": "#F7931A",
617
+ "eth": "#ECEFF0",
618
+ "ethereum": "#ECEFF0",
619
+ "hypercore": "#072723",
620
+ "hyperevm": "#072723",
621
+ "lightning": "#F7931A",
622
+ "litecoin": "#385D9A",
623
+ "monad": "#6E54FF",
624
+ "optimism": "#FE0420",
625
+ "plasma": "#162F29",
626
+ "polygon": "#843BED",
627
+ "sol": "#2BD9B9",
628
+ "solana": "#9548FC",
629
+ "tempo": "#BFBFBF",
630
+ "ton": "#30A1F5",
631
+ "tron": "#FF0013",
632
+ "trx": "#FF0013",
633
+ "usdb": "#01875A",
634
+ "usdc": "#2775C9",
635
+ "usdce": "#2775CA",
636
+ "usdt": "#26A17B",
637
+ "xrp": "#23292F",
638
+ "zcash": "#ECB449"
639
+ };
608
640
  // Annotate the CommonJS export names for ESM import in node:
609
641
  0 && (module.exports = {
610
642
  animation,
@@ -617,6 +649,7 @@ function makeTheme(mode) {
617
649
  fontWeight,
618
650
  gradient,
619
651
  iconBoxSize,
652
+ iconColors,
620
653
  iconSize,
621
654
  keyframes,
622
655
  layer,
@@ -571,4 +571,6 @@ declare const themes: Record<ThemeMode, KaleidoTheme>;
571
571
  /** Resolve the full palette for a mode. */
572
572
  declare function makeTheme(mode: ThemeMode): KaleidoTheme;
573
573
 
574
- export { type AppSemanticToken, type KaleidoTheme, type NativeTypeLevel, type ThemeMode, animation, appSemanticDark, appSemanticLight, appSemanticOrder, appStatusSubtleAlpha, colors, fontFamily, fontWeight, gradient, iconBoxSize, iconSize, keyframes, layer, letterSpacing, lightSemanticColors, makeTheme, nativeType, radius, shadow, sizing, themes, transition, typeScale };
574
+ declare const iconColors: Record<string, string>;
575
+
576
+ export { type AppSemanticToken, type KaleidoTheme, type NativeTypeLevel, type ThemeMode, animation, appSemanticDark, appSemanticLight, appSemanticOrder, appStatusSubtleAlpha, colors, fontFamily, fontWeight, gradient, iconBoxSize, iconColors, iconSize, keyframes, layer, letterSpacing, lightSemanticColors, makeTheme, nativeType, radius, shadow, sizing, themes, transition, typeScale };
@@ -571,4 +571,6 @@ declare const themes: Record<ThemeMode, KaleidoTheme>;
571
571
  /** Resolve the full palette for a mode. */
572
572
  declare function makeTheme(mode: ThemeMode): KaleidoTheme;
573
573
 
574
- export { type AppSemanticToken, type KaleidoTheme, type NativeTypeLevel, type ThemeMode, animation, appSemanticDark, appSemanticLight, appSemanticOrder, appStatusSubtleAlpha, colors, fontFamily, fontWeight, gradient, iconBoxSize, iconSize, keyframes, layer, letterSpacing, lightSemanticColors, makeTheme, nativeType, radius, shadow, sizing, themes, transition, typeScale };
574
+ declare const iconColors: Record<string, string>;
575
+
576
+ export { type AppSemanticToken, type KaleidoTheme, type NativeTypeLevel, type ThemeMode, animation, appSemanticDark, appSemanticLight, appSemanticOrder, appStatusSubtleAlpha, colors, fontFamily, fontWeight, gradient, iconBoxSize, iconColors, iconSize, keyframes, layer, letterSpacing, lightSemanticColors, makeTheme, nativeType, radius, shadow, sizing, themes, transition, typeScale };
@@ -557,6 +557,37 @@ var themes = { light, dark };
557
557
  function makeTheme(mode) {
558
558
  return themes[mode];
559
559
  }
560
+
561
+ // src/tokens/icon-colors.generated.ts
562
+ var iconColors = {
563
+ "arbitrum": "#1C3249",
564
+ "avalanche": "#E84142",
565
+ "bitcoin": "#F7931A",
566
+ "bnb": "#F3BA2E",
567
+ "btc": "#F7931A",
568
+ "eth": "#ECEFF0",
569
+ "ethereum": "#ECEFF0",
570
+ "hypercore": "#072723",
571
+ "hyperevm": "#072723",
572
+ "lightning": "#F7931A",
573
+ "litecoin": "#385D9A",
574
+ "monad": "#6E54FF",
575
+ "optimism": "#FE0420",
576
+ "plasma": "#162F29",
577
+ "polygon": "#843BED",
578
+ "sol": "#2BD9B9",
579
+ "solana": "#9548FC",
580
+ "tempo": "#BFBFBF",
581
+ "ton": "#30A1F5",
582
+ "tron": "#FF0013",
583
+ "trx": "#FF0013",
584
+ "usdb": "#01875A",
585
+ "usdc": "#2775C9",
586
+ "usdce": "#2775CA",
587
+ "usdt": "#26A17B",
588
+ "xrp": "#23292F",
589
+ "zcash": "#ECB449"
590
+ };
560
591
  export {
561
592
  animation,
562
593
  appSemanticDark,
@@ -568,6 +599,7 @@ export {
568
599
  fontWeight,
569
600
  gradient,
570
601
  iconBoxSize,
602
+ iconColors,
571
603
  iconSize,
572
604
  keyframes,
573
605
  layer,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.86",
3
+ "version": "0.1.87",
4
4
  "description": "KaleidoSwap shared UI library — design tokens, web components (Tailwind + Radix), and React Native components extending WDK UI Kit",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -117,6 +117,7 @@
117
117
  "autoprefixer": "^10.5.0",
118
118
  "class-variance-authority": "^0.7.1",
119
119
  "clsx": "^2.1.1",
120
+ "pngjs": "^7.0.0",
120
121
  "postcss": "^8.4.49",
121
122
  "react": "^19.0.0",
122
123
  "react-dom": "^19.0.0",