@vellira-ui/tokens 2.26.1 → 2.28.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.
Files changed (49) hide show
  1. package/dist/css/tokens.css +890 -365
  2. package/dist/dark/components/button.d.ts +263 -95
  3. package/dist/dark/components/button.d.ts.map +1 -1
  4. package/dist/dark/components/button.js +136 -151
  5. package/dist/dark/components/checkbox.d.ts +29 -19
  6. package/dist/dark/components/checkbox.d.ts.map +1 -1
  7. package/dist/dark/components/checkbox.js +112 -14
  8. package/dist/dark/components/formField.d.ts +1 -1
  9. package/dist/dark/components/input.d.ts +3 -3
  10. package/dist/dark/semantic/icons.d.ts +1 -1
  11. package/dist/dark/semantic/status.d.ts +4 -4
  12. package/dist/dark/theme.d.ts +11 -11
  13. package/dist/generated/token-types.d.ts +4 -4
  14. package/dist/generated/token-types.d.ts.map +1 -1
  15. package/dist/generated/token-types.js +964 -264
  16. package/dist/highContrast/components/button.d.ts +264 -96
  17. package/dist/highContrast/components/button.d.ts.map +1 -1
  18. package/dist/highContrast/components/button.js +135 -150
  19. package/dist/highContrast/components/checkbox.d.ts +29 -19
  20. package/dist/highContrast/components/checkbox.d.ts.map +1 -1
  21. package/dist/highContrast/components/checkbox.js +112 -20
  22. package/dist/highContrast/components/formField.d.ts +1 -1
  23. package/dist/highContrast/components/input.d.ts +3 -3
  24. package/dist/highContrast/semantic/action.d.ts +6 -6
  25. package/dist/highContrast/semantic/action.js +6 -6
  26. package/dist/highContrast/semantic/icons.d.ts +1 -1
  27. package/dist/highContrast/semantic/status.d.ts +5 -5
  28. package/dist/highContrast/theme.d.ts +11 -11
  29. package/dist/light/components/button.d.ts +264 -96
  30. package/dist/light/components/button.d.ts.map +1 -1
  31. package/dist/light/components/button.js +136 -151
  32. package/dist/light/components/checkbox.d.ts +29 -19
  33. package/dist/light/components/checkbox.d.ts.map +1 -1
  34. package/dist/light/components/checkbox.js +112 -14
  35. package/dist/light/components/formField.d.ts +2 -2
  36. package/dist/light/components/input.d.ts +3 -3
  37. package/dist/light/semantic/icons.d.ts +1 -1
  38. package/dist/light/semantic/status.d.ts +7 -7
  39. package/dist/light/semantic/status.js +3 -3
  40. package/dist/light/theme.d.ts +11 -11
  41. package/dist/primitives/colors.d.ts +11 -11
  42. package/dist/primitives/colors.js +11 -11
  43. package/dist/utils/createButtonPalette.d.ts +106 -0
  44. package/dist/utils/createButtonPalette.d.ts.map +1 -0
  45. package/dist/utils/createButtonPalette.js +72 -0
  46. package/dist/utils/createCheckboxPalette.d.ts +19 -0
  47. package/dist/utils/createCheckboxPalette.d.ts.map +1 -0
  48. package/dist/utils/createCheckboxPalette.js +6 -0
  49. package/package.json +1 -1
@@ -1,174 +1,159 @@
1
1
  import { colors } from '../../primitives/colors.js';
2
- import { action } from '../semantic/action.js';
2
+ import { createButtonPalette } from '../../utils/createButtonPalette.js';
3
3
  import { border } from '../semantic/border.js';
4
4
  import { status } from '../semantic/status.js';
5
5
  import { surface } from '../semantic/surface.js';
6
6
  import { text } from '../semantic/text.js';
7
- const transparent = {
8
- bg: 'transparent',
9
- border: 'transparent',
10
- };
11
- export const button = {
12
- primary: {
13
- solid: {
14
- default: action.primary.default,
15
- hover: action.primary.hover,
16
- pressed: action.primary.active,
7
+ const primary = createButtonPalette({
8
+ ring: colors.primary[400],
9
+ solid: {
10
+ default: {
11
+ bg: colors.primary[600],
12
+ fg: colors.primary[50],
13
+ border: colors.primary[50],
17
14
  },
18
- outline: {
19
- default: {
20
- bg: 'transparent',
21
- fg: colors.primary[300],
22
- border: colors.primary[300],
23
- },
24
- hover: {
25
- bg: action.primary.subtle.bg,
26
- fg: colors.primary[300],
27
- border: colors.warning[300],
28
- },
29
- pressed: {
30
- bg: action.primary.muted.bg,
31
- fg: colors.primary[400],
32
- border: colors.warning[300],
33
- },
15
+ hover: {
16
+ bg: colors.primary[700],
17
+ fg: colors.primary[200],
18
+ border: colors.primary[200],
34
19
  },
35
- ghost: {
36
- default: {
37
- ...transparent,
38
- fg: colors.primary[300],
39
- },
40
- hover: {
41
- ...transparent,
42
- bg: action.primary.subtle.bg,
43
- fg: colors.primary[300],
44
- },
45
- pressed: {
46
- ...transparent,
47
- bg: action.primary.muted.bg,
48
- fg: colors.primary[400],
49
- },
20
+ pressed: {
21
+ bg: colors.primary[800],
22
+ fg: colors.primary[300],
23
+ border: colors.primary[300],
50
24
  },
51
25
  },
52
- secondary: {
53
- solid: {
54
- default: action.secondary.default,
55
- hover: action.secondary.hover,
56
- pressed: action.secondary.active,
26
+ fg: colors.primary[300],
27
+ bg: colors.grayBlue[900],
28
+ border: colors.primary[300],
29
+ hoverBg: colors.primary[950],
30
+ hoverFg: colors.primary[400],
31
+ hoverBorder: colors.primary[400],
32
+ pressedBg: colors.gray[900],
33
+ pressedFg: colors.primary[500],
34
+ pressedBorder: colors.primary[500],
35
+ });
36
+ const neutral = createButtonPalette({
37
+ ring: colors.grayBlue[400],
38
+ solid: {
39
+ default: {
40
+ bg: colors.grayBlue[50],
41
+ fg: colors.grayBlue[950],
42
+ border: colors.grayBlue[900],
57
43
  },
58
- outline: {
59
- default: {
60
- bg: 'transparent',
61
- fg: colors.secondary[300],
62
- border: colors.secondary[300],
63
- },
64
- hover: {
65
- bg: action.secondary.subtle.bg,
66
- fg: colors.secondary[400],
67
- border: colors.warning[400],
68
- },
69
- pressed: {
70
- bg: action.secondary.muted.bg,
71
- fg: colors.secondary[500],
72
- border: colors.warning[500],
73
- },
44
+ hover: {
45
+ bg: colors.grayBlue[200],
46
+ fg: colors.grayBlue[900],
47
+ border: colors.grayBlue[700],
74
48
  },
75
- ghost: {
76
- default: {
77
- ...transparent,
78
- fg: colors.secondary[300],
79
- },
80
- hover: {
81
- ...transparent,
82
- bg: action.secondary.subtle.bg,
83
- fg: colors.secondary[400],
84
- },
85
- pressed: {
86
- ...transparent,
87
- bg: action.secondary.muted.bg,
88
- fg: colors.secondary[500],
89
- },
49
+ pressed: {
50
+ bg: colors.grayBlue[400],
51
+ fg: colors.grayBlue[800],
52
+ border: colors.grayBlue[800],
90
53
  },
91
54
  },
92
- close: {
93
- solid: {
94
- default: action.close.default,
95
- hover: action.close.hover,
96
- pressed: action.close.active,
55
+ fg: colors.grayBlue[50],
56
+ bg: colors.grayBlue[900],
57
+ border: colors.grayBlue[200],
58
+ hoverBg: colors.grayBlue[950],
59
+ hoverFg: colors.gray[200],
60
+ hoverBorder: colors.gray[200],
61
+ pressedBg: colors.gray[900],
62
+ pressedFg: colors.grayBlue[300],
63
+ });
64
+ const success = createButtonPalette({
65
+ ring: colors.success[500],
66
+ solid: {
67
+ default: {
68
+ bg: colors.success[500],
69
+ fg: colors.success[950],
70
+ border: colors.success[50],
97
71
  },
98
- outline: {
99
- default: {
100
- bg: 'transparent',
101
- fg: text.primary,
102
- border: border.default,
103
- },
104
- hover: {
105
- bg: action.close.subtle.bg,
106
- fg: text.primary,
107
- border: colors.warning[300],
108
- },
109
- pressed: {
110
- bg: action.close.muted.bg,
111
- fg: text.primary,
112
- border: colors.warning[300],
113
- },
72
+ hover: {
73
+ bg: colors.success[600],
74
+ fg: colors.success[900],
75
+ border: colors.success[100],
114
76
  },
115
- ghost: {
116
- default: {
117
- ...transparent,
118
- fg: text.primary,
119
- },
120
- hover: {
121
- ...transparent,
122
- bg: action.close.subtle.bg,
123
- fg: text.primary,
124
- },
125
- pressed: {
126
- ...transparent,
127
- bg: action.close.muted.bg,
128
- fg: text.primary,
129
- },
77
+ pressed: {
78
+ bg: colors.success[700],
79
+ fg: colors.success[800],
80
+ border: colors.success[200],
130
81
  },
131
82
  },
132
- danger: {
133
- solid: {
134
- default: action.danger.default,
135
- hover: action.danger.hover,
136
- pressed: action.danger.active,
83
+ fg: colors.success[300],
84
+ bg: status.success.bg,
85
+ border: colors.success[300],
86
+ hoverBg: colors.success[900],
87
+ hoverFg: colors.success[400],
88
+ hoverBorder: colors.success[400],
89
+ pressedBg: colors.success[950],
90
+ pressedFg: colors.success[500],
91
+ pressedBorder: colors.success[500],
92
+ });
93
+ const warning = createButtonPalette({
94
+ ring: colors.warning[500],
95
+ solid: {
96
+ default: {
97
+ bg: colors.warning[500],
98
+ fg: colors.warning[950],
99
+ border: colors.warning[50],
137
100
  },
138
- outline: {
139
- default: {
140
- bg: 'transparent',
141
- fg: status.error.fg,
142
- border: status.error.border,
143
- },
144
- hover: {
145
- bg: status.error.bg,
146
- fg: status.error.strong,
147
- border: colors.warning[300],
148
- },
149
- pressed: {
150
- bg: action.danger.muted.bg,
151
- fg: status.error.strong,
152
- border: colors.warning[300],
153
- },
101
+ hover: {
102
+ bg: colors.warning[600],
103
+ fg: colors.warning[900],
104
+ border: colors.warning[100],
154
105
  },
155
- ghost: {
156
- default: {
157
- ...transparent,
158
- fg: status.error.fg,
159
- },
160
- hover: {
161
- ...transparent,
162
- bg: status.error.bg,
163
- fg: status.error.strong,
164
- },
165
- pressed: {
166
- ...transparent,
167
- bg: action.danger.muted.bg,
168
- fg: status.error.strong,
169
- },
106
+ pressed: {
107
+ bg: colors.warning[700],
108
+ fg: colors.warning[800],
109
+ border: colors.warning[200],
170
110
  },
171
111
  },
112
+ fg: colors.warning[500],
113
+ bg: status.warning.bg,
114
+ border: colors.warning[500],
115
+ hoverBg: colors.warning[900],
116
+ hoverFg: colors.warning[400],
117
+ hoverBorder: colors.warning[400],
118
+ pressedBg: colors.warning[950],
119
+ pressedFg: colors.warning[600],
120
+ pressedBorder: colors.warning[600],
121
+ });
122
+ const danger = createButtonPalette({
123
+ ring: colors.error[500],
124
+ solid: {
125
+ default: {
126
+ bg: colors.error[700],
127
+ fg: colors.error[50],
128
+ border: colors.error[200],
129
+ },
130
+ hover: {
131
+ bg: colors.error[600],
132
+ fg: colors.error[200],
133
+ border: colors.error[200],
134
+ },
135
+ pressed: {
136
+ bg: colors.error[800],
137
+ fg: colors.error[300],
138
+ border: colors.error[400],
139
+ },
140
+ },
141
+ fg: colors.error[400],
142
+ bg: colors.error[950],
143
+ border: colors.error[400],
144
+ hoverBg: colors.error[900],
145
+ hoverFg: colors.error[200],
146
+ hoverBorder: colors.error[400],
147
+ pressedBg: colors.error[800],
148
+ pressedFg: colors.error[300],
149
+ pressedBorder: colors.error[500],
150
+ });
151
+ export const button = {
152
+ primary,
153
+ neutral,
154
+ success,
155
+ warning,
156
+ danger,
172
157
  disabled: {
173
158
  bg: surface.disabled,
174
159
  fg: text.disabled,
@@ -10,25 +10,35 @@ export declare const checkbox: {
10
10
  readonly fg: "#FBBF24";
11
11
  readonly border: "#FCD34D";
12
12
  };
13
- readonly checked: {
14
- readonly default: {
15
- readonly bg: "#FCD34D";
16
- readonly fg: "#000000";
17
- readonly border: "#FCD34D";
18
- readonly labelFg: "#FBBF24";
19
- };
20
- readonly hover: {
21
- readonly bg: "#FDE68A";
22
- readonly fg: "#000000";
23
- readonly border: "#FDE68A";
24
- readonly labelFg: "#FCD34D";
25
- };
26
- readonly pressed: {
27
- readonly bg: "#FBBF24";
28
- readonly fg: "#000000";
29
- readonly border: "#FBBF24";
30
- readonly labelFg: "#FDE68A";
31
- };
13
+ readonly primary: {
14
+ readonly ring: string;
15
+ readonly default: import("../../utils/createCheckboxPalette.js").CheckboxState;
16
+ readonly hover: import("../../utils/createCheckboxPalette.js").CheckboxState;
17
+ readonly pressed: import("../../utils/createCheckboxPalette.js").CheckboxState;
18
+ };
19
+ readonly neutral: {
20
+ readonly ring: string;
21
+ readonly default: import("../../utils/createCheckboxPalette.js").CheckboxState;
22
+ readonly hover: import("../../utils/createCheckboxPalette.js").CheckboxState;
23
+ readonly pressed: import("../../utils/createCheckboxPalette.js").CheckboxState;
24
+ };
25
+ readonly success: {
26
+ readonly ring: string;
27
+ readonly default: import("../../utils/createCheckboxPalette.js").CheckboxState;
28
+ readonly hover: import("../../utils/createCheckboxPalette.js").CheckboxState;
29
+ readonly pressed: import("../../utils/createCheckboxPalette.js").CheckboxState;
30
+ };
31
+ readonly warning: {
32
+ readonly ring: string;
33
+ readonly default: import("../../utils/createCheckboxPalette.js").CheckboxState;
34
+ readonly hover: import("../../utils/createCheckboxPalette.js").CheckboxState;
35
+ readonly pressed: import("../../utils/createCheckboxPalette.js").CheckboxState;
36
+ };
37
+ readonly danger: {
38
+ readonly ring: string;
39
+ readonly default: import("../../utils/createCheckboxPalette.js").CheckboxState;
40
+ readonly hover: import("../../utils/createCheckboxPalette.js").CheckboxState;
41
+ readonly pressed: import("../../utils/createCheckboxPalette.js").CheckboxState;
32
42
  };
33
43
  readonly focus: {
34
44
  readonly ring: "#FCD34D";
@@ -1 +1 @@
1
- {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/highContrast/components/checkbox.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CX,CAAC"}
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/highContrast/components/checkbox.ts"],"names":[],"mappings":"AAqHA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyBX,CAAC"}
@@ -1,33 +1,125 @@
1
+ import { colors } from '../../primitives/colors.js';
2
+ import { createCheckboxPalette } from '../../utils/createCheckboxPalette.js';
1
3
  import { control } from '../semantic/control.js';
2
4
  import { focus } from '../semantic/focus.js';
3
5
  import { status } from '../semantic/status.js';
4
6
  import { text } from '../semantic/text.js';
7
+ const primary = createCheckboxPalette({
8
+ ring: colors.primary[400],
9
+ default: {
10
+ bg: colors.primary[600],
11
+ fg: colors.primary[50],
12
+ border: colors.primary[600],
13
+ labelFg: colors.primary[300],
14
+ },
15
+ hover: {
16
+ bg: colors.primary[700],
17
+ fg: colors.primary[200],
18
+ border: colors.primary[700],
19
+ labelFg: colors.primary[400],
20
+ },
21
+ pressed: {
22
+ bg: colors.primary[800],
23
+ fg: colors.primary[300],
24
+ border: colors.primary[800],
25
+ labelFg: colors.primary[500],
26
+ },
27
+ });
28
+ const neutral = createCheckboxPalette({
29
+ ring: colors.grayBlue[400],
30
+ default: {
31
+ bg: colors.grayBlue[50],
32
+ fg: colors.grayBlue[950],
33
+ border: colors.grayBlue[50],
34
+ labelFg: colors.grayBlue[50],
35
+ },
36
+ hover: {
37
+ bg: colors.grayBlue[200],
38
+ fg: colors.grayBlue[900],
39
+ border: colors.grayBlue[200],
40
+ labelFg: colors.gray[200],
41
+ },
42
+ pressed: {
43
+ bg: colors.grayBlue[400],
44
+ fg: colors.grayBlue[800],
45
+ border: colors.grayBlue[400],
46
+ labelFg: colors.grayBlue[300],
47
+ },
48
+ });
49
+ const success = createCheckboxPalette({
50
+ ring: colors.success[500],
51
+ default: {
52
+ bg: colors.success[500],
53
+ fg: colors.success[950],
54
+ border: colors.success[500],
55
+ labelFg: colors.success[300],
56
+ },
57
+ hover: {
58
+ bg: colors.success[600],
59
+ fg: colors.success[900],
60
+ border: colors.success[600],
61
+ labelFg: colors.success[400],
62
+ },
63
+ pressed: {
64
+ bg: colors.success[700],
65
+ fg: colors.success[800],
66
+ border: colors.success[700],
67
+ labelFg: colors.success[500],
68
+ },
69
+ });
70
+ const warning = createCheckboxPalette({
71
+ ring: colors.warning[500],
72
+ default: {
73
+ bg: colors.warning[500],
74
+ fg: colors.warning[950],
75
+ border: colors.warning[500],
76
+ labelFg: colors.warning[500],
77
+ },
78
+ hover: {
79
+ bg: colors.warning[600],
80
+ fg: colors.warning[900],
81
+ border: colors.warning[600],
82
+ labelFg: colors.warning[400],
83
+ },
84
+ pressed: {
85
+ bg: colors.warning[700],
86
+ fg: colors.warning[800],
87
+ border: colors.warning[700],
88
+ labelFg: colors.warning[600],
89
+ },
90
+ });
91
+ const danger = createCheckboxPalette({
92
+ ring: colors.error[500],
93
+ default: {
94
+ bg: colors.error[700],
95
+ fg: colors.error[50],
96
+ border: colors.error[700],
97
+ labelFg: colors.error[400],
98
+ },
99
+ hover: {
100
+ bg: colors.error[600],
101
+ fg: colors.error[200],
102
+ border: colors.error[600],
103
+ labelFg: colors.error[200],
104
+ },
105
+ pressed: {
106
+ bg: colors.error[800],
107
+ fg: colors.error[300],
108
+ border: colors.error[800],
109
+ labelFg: colors.error[300],
110
+ },
111
+ });
5
112
  export const checkbox = {
6
113
  default: control.default,
7
114
  hover: {
8
115
  ...control.hover,
9
116
  labelFg: text.interactiveHover,
10
117
  },
11
- checked: {
12
- default: {
13
- bg: control.selected.default.bg,
14
- fg: control.selected.default.fg,
15
- border: control.selected.default.border,
16
- labelFg: text.interactive,
17
- },
18
- hover: {
19
- bg: control.selected.hover.bg,
20
- fg: control.selected.hover.fg,
21
- border: control.selected.hover.border,
22
- labelFg: text.interactiveHover,
23
- },
24
- pressed: {
25
- bg: control.selected.active.bg,
26
- fg: control.selected.active.fg,
27
- border: control.selected.active.border,
28
- labelFg: text.interactiveActive,
29
- },
30
- },
118
+ primary,
119
+ neutral,
120
+ success,
121
+ warning,
122
+ danger,
31
123
  focus: {
32
124
  ring: focus.ring.color,
33
125
  },
@@ -13,7 +13,7 @@ export declare const formField: {
13
13
  readonly fg: "#FB7185";
14
14
  };
15
15
  readonly success: {
16
- readonly fg: "#6EE7B7";
16
+ readonly fg: "#5EEAD4";
17
17
  };
18
18
  readonly warning: {
19
19
  readonly fg: "#FCD34D";
@@ -33,8 +33,8 @@ export declare const input: {
33
33
  readonly ring: "#FB7185";
34
34
  };
35
35
  readonly success: {
36
- readonly border: "#6EE7B7";
37
- readonly ring: "#6EE7B7";
36
+ readonly border: "#5EEAD4";
37
+ readonly ring: "#5EEAD4";
38
38
  };
39
39
  readonly readOnly: {
40
40
  readonly bg: "#1F2937";
@@ -47,7 +47,7 @@ export declare const input: {
47
47
  readonly default: "#FFFFFF";
48
48
  readonly primary: "#FCD34D";
49
49
  readonly secondary: "#E5E7EB";
50
- readonly success: "#6EE7B7";
50
+ readonly success: "#5EEAD4";
51
51
  readonly danger: "#FDA4AF";
52
52
  readonly muted: "#9CA3AF";
53
53
  readonly inverse: "#000000";
@@ -8,12 +8,12 @@ export declare const action: {
8
8
  readonly hover: {
9
9
  readonly bg: "#9B7CFF";
10
10
  readonly fg: "#000000";
11
- readonly border: "#FCD34D";
11
+ readonly border: "#D4CCFF";
12
12
  };
13
13
  readonly active: {
14
14
  readonly bg: "#6346E8";
15
15
  readonly fg: "#FFFFFF";
16
- readonly border: "#FCD34D";
16
+ readonly border: "#B8A8FF";
17
17
  };
18
18
  readonly muted: {
19
19
  readonly bg: "#21164F";
@@ -35,7 +35,7 @@ export declare const action: {
35
35
  readonly hover: {
36
36
  readonly bg: "#B4F4FD";
37
37
  readonly fg: "#000000";
38
- readonly border: "#FCD34D";
38
+ readonly border: "#79E8F8";
39
39
  };
40
40
  readonly active: {
41
41
  readonly bg: "#3ED5EE";
@@ -57,17 +57,17 @@ export declare const action: {
57
57
  readonly default: {
58
58
  readonly bg: "#FFFFFF";
59
59
  readonly fg: "#000000";
60
- readonly border: "#FFFFFF";
60
+ readonly border: "#000000";
61
61
  };
62
62
  readonly hover: {
63
63
  readonly bg: "#E5E7EB";
64
64
  readonly fg: "#000000";
65
- readonly border: "#FCD34D";
65
+ readonly border: "#0B1120";
66
66
  };
67
67
  readonly active: {
68
68
  readonly bg: "#9CA3AF";
69
69
  readonly fg: "#000000";
70
- readonly border: "#FCD34D";
70
+ readonly border: "#0B1120";
71
71
  };
72
72
  readonly muted: {
73
73
  readonly bg: "#1F2937";
@@ -9,12 +9,12 @@ export const action = {
9
9
  hover: {
10
10
  bg: colors.primary[400],
11
11
  fg: colors.mono[950],
12
- border: colors.warning[300],
12
+ border: colors.primary[200],
13
13
  },
14
14
  active: {
15
15
  bg: colors.primary[600],
16
16
  fg: colors.mono[50],
17
- border: colors.warning[300],
17
+ border: colors.primary[300],
18
18
  },
19
19
  muted: {
20
20
  bg: colors.primary[950],
@@ -36,7 +36,7 @@ export const action = {
36
36
  hover: {
37
37
  bg: colors.secondary[200],
38
38
  fg: colors.mono[950],
39
- border: colors.warning[300],
39
+ border: colors.secondary[300],
40
40
  },
41
41
  active: {
42
42
  bg: colors.secondary[400],
@@ -58,17 +58,17 @@ export const action = {
58
58
  default: {
59
59
  bg: colors.mono[50],
60
60
  fg: colors.mono[950],
61
- border: colors.mono[50],
61
+ border: colors.mono[950],
62
62
  },
63
63
  hover: {
64
64
  bg: colors.gray[200],
65
65
  fg: colors.mono[950],
66
- border: colors.warning[300],
66
+ border: colors.gray[950],
67
67
  },
68
68
  active: {
69
69
  bg: colors.gray[400],
70
70
  fg: colors.mono[950],
71
- border: colors.warning[300],
71
+ border: colors.gray[950],
72
72
  },
73
73
  muted: {
74
74
  bg: colors.gray[800],
@@ -7,7 +7,7 @@ export declare const icons: {
7
7
  readonly primary: "#FCD34D";
8
8
  readonly brand: "#FCD34D";
9
9
  readonly hover: "#FDE68A";
10
- readonly success: "#6EE7B7";
10
+ readonly success: "#5EEAD4";
11
11
  readonly danger: "#FDA4AF";
12
12
  readonly inverse: "#000000";
13
13
  };
@@ -1,10 +1,10 @@
1
1
  export declare const status: {
2
2
  readonly success: {
3
- readonly fg: "#6EE7B7";
4
- readonly bg: "#022C22";
5
- readonly border: "#6EE7B7";
6
- readonly ring: "#6EE7B7";
7
- readonly strong: "#A7F3D0";
3
+ readonly fg: "#5EEAD4";
4
+ readonly bg: "#042F2E";
5
+ readonly border: "#5EEAD4";
6
+ readonly ring: "#5EEAD4";
7
+ readonly strong: "#99F6E4";
8
8
  };
9
9
  readonly error: {
10
10
  readonly fg: "#FB7185";