sh-ui-cli 0.67.3 → 0.68.1

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.
@@ -20,6 +20,8 @@ class ShUiColorTokens {
20
20
  final Color primaryHover;
21
21
  final Color danger;
22
22
  final Color dangerForeground;
23
+ final Color dangerHover;
24
+ final Color ring;
23
25
 
24
26
  const ShUiColorTokens({
25
27
  required this.background,
@@ -37,6 +39,8 @@ class ShUiColorTokens {
37
39
  required this.primaryHover,
38
40
  required this.danger,
39
41
  required this.dangerForeground,
42
+ required this.dangerHover,
43
+ required this.ring,
40
44
  });
41
45
 
42
46
  // sh-ui:theme-colors-start
@@ -56,6 +60,8 @@ class ShUiColorTokens {
56
60
  primaryHover: Color(0xFF262626),
57
61
  danger: Color(0xFFDC2626),
58
62
  dangerForeground: Color(0xFFFFFFFF),
63
+ dangerHover: Color(0xFFB91C1C),
64
+ ring: Color(0xFFA3A3A3),
59
65
  );
60
66
 
61
67
  static const dark = ShUiColorTokens(
@@ -74,6 +80,8 @@ class ShUiColorTokens {
74
80
  primaryHover: Color(0xFFE5E5E5),
75
81
  danger: Color(0xFFDC2626),
76
82
  dangerForeground: Color(0xFFFFFFFF),
83
+ dangerHover: Color(0xFFEF4444),
84
+ ring: Color(0xFF737373),
77
85
  );
78
86
  // sh-ui:theme-colors-end
79
87
  }
@@ -8,6 +8,7 @@
8
8
  },
9
9
  "paths": {
10
10
  "tokens": "lib/styles/tokens.css",
11
+ "cssEntry": "app/globals.css",
11
12
  "styles": "lib/styles",
12
13
  "components": "components/common",
13
14
  "utils": "lib/utils/utils.ts"
@@ -8,6 +8,7 @@
8
8
  },
9
9
  "paths": {
10
10
  "tokens": "src/shared/styles/tokens.css",
11
+ "cssEntry": "app/globals.css",
11
12
  "styles": "src/shared/styles",
12
13
  "components": "src/shared/ui",
13
14
  "utils": "src/shared/lib/utils.ts"
@@ -9,6 +9,7 @@
9
9
  },
10
10
  "paths": {
11
11
  "tokens": "src/styles/tokens.css",
12
+ "cssEntry": "src/styles/globals.css",
12
13
  "styles": "src/styles"
13
14
  }
14
15
  }