@vellira-ui/tokens 2.19.6 → 2.20.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 (69) hide show
  1. package/dist/css/tokens.css +485 -205
  2. package/dist/dark/components/button.d.ts +198 -37
  3. package/dist/dark/components/button.d.ts.map +1 -1
  4. package/dist/dark/components/button.js +161 -9
  5. package/dist/dark/components/checkbox.d.ts +2 -2
  6. package/dist/dark/components/checkbox.js +1 -1
  7. package/dist/dark/components/dropdown.d.ts +2 -2
  8. package/dist/dark/components/formField.d.ts +4 -4
  9. package/dist/dark/components/input.d.ts +2 -2
  10. package/dist/dark/components/menu.d.ts +1 -1
  11. package/dist/dark/components/modal.d.ts +1 -1
  12. package/dist/dark/components/radio.d.ts +2 -2
  13. package/dist/dark/components/radio.js +1 -1
  14. package/dist/dark/components/select.d.ts +3 -3
  15. package/dist/dark/components/select.js +1 -1
  16. package/dist/dark/components/tabs.d.ts +2 -2
  17. package/dist/dark/semantic/action.d.ts +37 -19
  18. package/dist/dark/semantic/action.d.ts.map +1 -1
  19. package/dist/dark/semantic/action.js +37 -19
  20. package/dist/dark/semantic/status.d.ts +3 -3
  21. package/dist/dark/semantic/surface.d.ts +1 -0
  22. package/dist/dark/semantic/surface.d.ts.map +1 -1
  23. package/dist/dark/semantic/surface.js +1 -0
  24. package/dist/dark/semantic/text.d.ts +1 -1
  25. package/dist/dark/semantic/text.js +1 -1
  26. package/dist/dark/theme.d.ts +14 -12
  27. package/dist/dark/theme.d.ts.map +1 -1
  28. package/dist/generated/token-types.d.ts +6 -6
  29. package/dist/generated/token-types.d.ts.map +1 -1
  30. package/dist/generated/token-types.js +484 -108
  31. package/dist/highContrast/components/button.d.ts +198 -37
  32. package/dist/highContrast/components/button.d.ts.map +1 -1
  33. package/dist/highContrast/components/button.js +162 -10
  34. package/dist/highContrast/components/checkbox.d.ts +2 -2
  35. package/dist/highContrast/components/formField.d.ts +1 -1
  36. package/dist/highContrast/components/menu.d.ts +1 -1
  37. package/dist/highContrast/components/radio.d.ts +2 -2
  38. package/dist/highContrast/components/tabs.d.ts +1 -1
  39. package/dist/highContrast/semantic/action.d.ts +30 -13
  40. package/dist/highContrast/semantic/action.d.ts.map +1 -1
  41. package/dist/highContrast/semantic/action.js +30 -13
  42. package/dist/highContrast/semantic/control.d.ts +2 -2
  43. package/dist/highContrast/semantic/skeleton.d.ts +1 -1
  44. package/dist/highContrast/semantic/status.d.ts +3 -3
  45. package/dist/highContrast/semantic/surface.d.ts +1 -0
  46. package/dist/highContrast/semantic/surface.d.ts.map +1 -1
  47. package/dist/highContrast/semantic/surface.js +1 -0
  48. package/dist/highContrast/theme.d.ts +14 -12
  49. package/dist/highContrast/theme.d.ts.map +1 -1
  50. package/dist/light/components/button.d.ts +198 -37
  51. package/dist/light/components/button.d.ts.map +1 -1
  52. package/dist/light/components/button.js +162 -10
  53. package/dist/light/components/formField.d.ts +1 -1
  54. package/dist/light/semantic/action.d.ts +21 -4
  55. package/dist/light/semantic/action.d.ts.map +1 -1
  56. package/dist/light/semantic/action.js +17 -0
  57. package/dist/light/semantic/status.d.ts +3 -3
  58. package/dist/light/semantic/surface.d.ts +1 -0
  59. package/dist/light/semantic/surface.d.ts.map +1 -1
  60. package/dist/light/semantic/surface.js +1 -0
  61. package/dist/light/semantic/text.d.ts +1 -1
  62. package/dist/light/semantic/text.d.ts.map +1 -1
  63. package/dist/light/semantic/text.js +2 -3
  64. package/dist/light/theme.d.ts +14 -12
  65. package/dist/light/theme.d.ts.map +1 -1
  66. package/dist/primitives/colors.d.ts +14 -12
  67. package/dist/primitives/colors.d.ts.map +1 -1
  68. package/dist/primitives/colors.js +14 -12
  69. package/package.json +1 -1
@@ -1,58 +1,219 @@
1
1
  export declare const button: {
2
2
  readonly primary: {
3
- readonly default: {
4
- readonly bg: "#6D5BD0";
5
- readonly fg: "#FFFFFF";
6
- readonly border: "#6D5BD0";
3
+ readonly solid: {
4
+ readonly default: {
5
+ readonly bg: "#6D5BD0";
6
+ readonly fg: "#FFFFFF";
7
+ readonly border: "#6D5BD0";
8
+ };
9
+ readonly hover: {
10
+ readonly bg: "#8B7CF6";
11
+ readonly fg: "#FFFFFF";
12
+ readonly border: "#8B7CF6";
13
+ };
14
+ readonly pressed: {
15
+ readonly bg: "#6D5BD0";
16
+ readonly fg: "#FFFFFF";
17
+ readonly border: "#6D5BD0";
18
+ };
7
19
  };
8
- readonly hover: {
9
- readonly bg: "#5B4BEA";
10
- readonly fg: "#FFFFFF";
11
- readonly border: "#5B4BEA";
20
+ readonly outline: {
21
+ readonly default: {
22
+ readonly fg: "#A78BFA";
23
+ readonly border: "#A78BFA";
24
+ readonly bg: string;
25
+ };
26
+ readonly hover: {
27
+ readonly fg: "#8B7CF6";
28
+ readonly border: "#8B7CF6";
29
+ readonly bg: string;
30
+ };
31
+ readonly pressed: {
32
+ readonly fg: "#6D5BD0";
33
+ readonly border: "#6D5BD0";
34
+ readonly bg: string;
35
+ };
12
36
  };
13
- readonly pressed: {
14
- readonly bg: "#4936D9";
15
- readonly fg: "#FFFFFF";
16
- readonly border: "#4936D9";
37
+ readonly ghost: {
38
+ readonly default: {
39
+ readonly fg: "#A78BFA";
40
+ readonly border: "transparent";
41
+ readonly bg: string;
42
+ };
43
+ readonly hover: {
44
+ readonly fg: "#8B7CF6";
45
+ readonly border: "transparent";
46
+ readonly bg: string;
47
+ };
48
+ readonly pressed: {
49
+ readonly fg: "#6D5BD0";
50
+ readonly border: "transparent";
51
+ readonly bg: string;
52
+ };
17
53
  };
18
54
  };
19
55
  readonly secondary: {
20
- readonly default: {
21
- readonly bg: "#5F64B8";
22
- readonly fg: "#FFFFFF";
23
- readonly border: "#5F64B8";
56
+ readonly solid: {
57
+ readonly default: {
58
+ readonly bg: "#9EA2EA";
59
+ readonly fg: "#000000";
60
+ readonly border: "#9EA2EA";
61
+ };
62
+ readonly hover: {
63
+ readonly bg: "#7B80D8";
64
+ readonly fg: "#000000";
65
+ readonly border: "#7B80D8";
66
+ };
67
+ readonly pressed: {
68
+ readonly bg: "#4C4F8F";
69
+ readonly fg: "#000000";
70
+ readonly border: "#4C4F8F";
71
+ };
24
72
  };
25
- readonly hover: {
26
- readonly bg: "#555AA8";
27
- readonly fg: "#FFFFFF";
28
- readonly border: "#555AA8";
73
+ readonly outline: {
74
+ readonly default: {
75
+ readonly fg: "#9EA2EA";
76
+ readonly border: "#9EA2EA";
77
+ readonly bg: string;
78
+ };
79
+ readonly hover: {
80
+ readonly fg: "#7B80D8";
81
+ readonly border: "#7B80D8";
82
+ readonly bg: string;
83
+ };
84
+ readonly pressed: {
85
+ readonly fg: "#4C4F8F";
86
+ readonly border: "#4C4F8F";
87
+ readonly bg: string;
88
+ };
29
89
  };
30
- readonly pressed: {
31
- readonly bg: "#494F95";
32
- readonly fg: "#FFFFFF";
33
- readonly border: "#494F95";
90
+ readonly ghost: {
91
+ readonly default: {
92
+ readonly fg: "#9EA2EA";
93
+ readonly border: "transparent";
94
+ readonly bg: string;
95
+ };
96
+ readonly hover: {
97
+ readonly fg: "#7B80D8";
98
+ readonly border: "transparent";
99
+ readonly bg: string;
100
+ };
101
+ readonly pressed: {
102
+ readonly fg: "#4C4F8F";
103
+ readonly border: "transparent";
104
+ readonly bg: string;
105
+ };
106
+ };
107
+ };
108
+ readonly close: {
109
+ readonly solid: {
110
+ readonly default: {
111
+ readonly bg: "#E8E2F3";
112
+ readonly fg: "#000000";
113
+ readonly border: "#E8E2F3";
114
+ };
115
+ readonly hover: {
116
+ readonly bg: "#C4D0DD";
117
+ readonly fg: "#000000";
118
+ readonly border: "#C4D0DD";
119
+ };
120
+ readonly pressed: {
121
+ readonly bg: "#D8E4F2";
122
+ readonly fg: "#000000";
123
+ readonly border: "#D8E4F2";
124
+ };
125
+ };
126
+ readonly outline: {
127
+ readonly default: {
128
+ readonly fg: "#E8E2F3";
129
+ readonly border: "#E8E2F3";
130
+ readonly bg: string;
131
+ };
132
+ readonly hover: {
133
+ readonly fg: "#C4D0DD";
134
+ readonly border: "#C4D0DD";
135
+ readonly bg: string;
136
+ };
137
+ readonly pressed: {
138
+ readonly fg: "#D8E4F2";
139
+ readonly border: "#D8E4F2";
140
+ readonly bg: string;
141
+ };
142
+ };
143
+ readonly ghost: {
144
+ readonly default: {
145
+ readonly fg: "#E8E2F3";
146
+ readonly border: "transparent";
147
+ readonly bg: string;
148
+ };
149
+ readonly hover: {
150
+ readonly fg: "#C4D0DD";
151
+ readonly border: "transparent";
152
+ readonly bg: string;
153
+ };
154
+ readonly pressed: {
155
+ readonly fg: "#D8E4F2";
156
+ readonly border: "transparent";
157
+ readonly bg: string;
158
+ };
34
159
  };
35
160
  };
36
161
  readonly danger: {
37
- readonly default: {
38
- readonly bg: "#E11D48";
39
- readonly fg: "#FFFFFF";
40
- readonly border: "#E11D48";
162
+ readonly solid: {
163
+ readonly default: {
164
+ readonly bg: "#E11D48";
165
+ readonly fg: "#FFFFFF";
166
+ readonly border: "#E11D48";
167
+ };
168
+ readonly hover: {
169
+ readonly bg: "#DC2626";
170
+ readonly fg: "#FFFFFF";
171
+ readonly border: "#DC2626";
172
+ };
173
+ readonly pressed: {
174
+ readonly bg: "#B91C1C";
175
+ readonly fg: "#FFFFFF";
176
+ readonly border: "#B91C1C";
177
+ };
41
178
  };
42
- readonly hover: {
43
- readonly bg: "#DC2626";
44
- readonly fg: "#FFFFFF";
45
- readonly border: "#DC2626";
179
+ readonly outline: {
180
+ readonly default: {
181
+ readonly fg: "#FB7185";
182
+ readonly border: "#FB7185";
183
+ readonly bg: string;
184
+ };
185
+ readonly hover: {
186
+ readonly fg: "#DC2626";
187
+ readonly border: "#DC2626";
188
+ readonly bg: string;
189
+ };
190
+ readonly pressed: {
191
+ readonly fg: "#B91C1C";
192
+ readonly border: "#B91C1C";
193
+ readonly bg: string;
194
+ };
46
195
  };
47
- readonly pressed: {
48
- readonly bg: "#B91C1C";
49
- readonly fg: "#FFFFFF";
50
- readonly border: "#B91C1C";
196
+ readonly ghost: {
197
+ readonly default: {
198
+ readonly fg: "#FB7185";
199
+ readonly border: "transparent";
200
+ readonly bg: string;
201
+ };
202
+ readonly hover: {
203
+ readonly fg: "#DC2626";
204
+ readonly border: "transparent";
205
+ readonly bg: string;
206
+ };
207
+ readonly pressed: {
208
+ readonly fg: "#B91C1C";
209
+ readonly border: "transparent";
210
+ readonly bg: string;
211
+ };
51
212
  };
52
213
  };
53
214
  readonly disabled: {
54
215
  readonly bg: "#29253A";
55
- readonly fg: "#413957";
216
+ readonly fg: "#746F86";
56
217
  readonly border: "#3A334D";
57
218
  };
58
219
  };
@@ -1 +1 @@
1
- {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/dark/components/button.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBT,CAAC"}
1
+ {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/dark/components/button.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8KT,CAAC"}
@@ -2,21 +2,173 @@ import { action } from '../semantic/action.js';
2
2
  import { border } from '../semantic/border.js';
3
3
  import { surface } from '../semantic/surface.js';
4
4
  import { text } from '../semantic/text.js';
5
+ const transparent = {
6
+ bg: 'transparent',
7
+ };
5
8
  export const button = {
6
9
  primary: {
7
- default: action.primary.default,
8
- hover: action.primary.hover,
9
- pressed: action.primary.active,
10
+ solid: {
11
+ default: action.primary.default,
12
+ hover: action.primary.hover,
13
+ pressed: action.primary.active,
14
+ },
15
+ outline: {
16
+ default: {
17
+ ...transparent,
18
+ fg: action.primary.muted.bg,
19
+ border: action.primary.muted.border,
20
+ },
21
+ hover: {
22
+ ...transparent,
23
+ fg: action.primary.hover.bg,
24
+ border: action.primary.hover.border,
25
+ },
26
+ pressed: {
27
+ ...transparent,
28
+ fg: action.primary.active.bg,
29
+ border: action.primary.active.border,
30
+ },
31
+ },
32
+ ghost: {
33
+ default: {
34
+ ...transparent,
35
+ fg: action.primary.muted.bg,
36
+ border: 'transparent',
37
+ },
38
+ hover: {
39
+ ...transparent,
40
+ fg: action.primary.hover.bg,
41
+ border: 'transparent',
42
+ },
43
+ pressed: {
44
+ ...transparent,
45
+ fg: action.primary.active.bg,
46
+ border: 'transparent',
47
+ },
48
+ },
10
49
  },
11
50
  secondary: {
12
- default: action.secondary.default,
13
- hover: action.secondary.hover,
14
- pressed: action.secondary.active,
51
+ solid: {
52
+ default: action.secondary.default,
53
+ hover: action.secondary.hover,
54
+ pressed: action.secondary.active,
55
+ },
56
+ outline: {
57
+ default: {
58
+ ...transparent,
59
+ fg: action.secondary.default.bg,
60
+ border: action.secondary.default.border,
61
+ },
62
+ hover: {
63
+ ...transparent,
64
+ fg: action.secondary.hover.bg,
65
+ border: action.secondary.hover.border,
66
+ },
67
+ pressed: {
68
+ ...transparent,
69
+ fg: action.secondary.active.bg,
70
+ border: action.secondary.active.border,
71
+ },
72
+ },
73
+ ghost: {
74
+ default: {
75
+ ...transparent,
76
+ fg: action.secondary.default.bg,
77
+ border: 'transparent',
78
+ },
79
+ hover: {
80
+ ...transparent,
81
+ fg: action.secondary.hover.bg,
82
+ border: 'transparent',
83
+ },
84
+ pressed: {
85
+ ...transparent,
86
+ fg: action.secondary.active.bg,
87
+ border: 'transparent',
88
+ },
89
+ },
90
+ },
91
+ close: {
92
+ solid: {
93
+ default: action.close.default,
94
+ hover: action.close.hover,
95
+ pressed: action.close.active,
96
+ },
97
+ outline: {
98
+ default: {
99
+ ...transparent,
100
+ fg: action.close.default.bg,
101
+ border: action.close.default.border,
102
+ },
103
+ hover: {
104
+ ...transparent,
105
+ fg: action.close.hover.bg,
106
+ border: action.close.hover.border,
107
+ },
108
+ pressed: {
109
+ ...transparent,
110
+ fg: action.close.active.bg,
111
+ border: action.close.active.border,
112
+ },
113
+ },
114
+ ghost: {
115
+ default: {
116
+ ...transparent,
117
+ fg: action.close.default.bg,
118
+ border: 'transparent',
119
+ },
120
+ hover: {
121
+ ...transparent,
122
+ fg: action.close.hover.bg,
123
+ border: 'transparent',
124
+ },
125
+ pressed: {
126
+ ...transparent,
127
+ fg: action.close.active.bg,
128
+ border: 'transparent',
129
+ },
130
+ },
15
131
  },
16
132
  danger: {
17
- default: action.danger.default,
18
- hover: action.danger.hover,
19
- pressed: action.danger.active,
133
+ solid: {
134
+ default: action.danger.default,
135
+ hover: action.danger.hover,
136
+ pressed: action.danger.active,
137
+ },
138
+ outline: {
139
+ default: {
140
+ ...transparent,
141
+ fg: action.danger.subtle.bg,
142
+ border: action.danger.subtle.border,
143
+ },
144
+ hover: {
145
+ ...transparent,
146
+ fg: action.danger.hover.bg,
147
+ border: action.danger.hover.border,
148
+ },
149
+ pressed: {
150
+ ...transparent,
151
+ fg: action.danger.active.bg,
152
+ border: action.danger.active.border,
153
+ },
154
+ },
155
+ ghost: {
156
+ default: {
157
+ ...transparent,
158
+ fg: action.danger.subtle.bg,
159
+ border: 'transparent',
160
+ },
161
+ hover: {
162
+ ...transparent,
163
+ fg: action.danger.hover.bg,
164
+ border: 'transparent',
165
+ },
166
+ pressed: {
167
+ ...transparent,
168
+ fg: action.danger.active.bg,
169
+ border: 'transparent',
170
+ },
171
+ },
20
172
  },
21
173
  disabled: {
22
174
  bg: surface.subtle,
@@ -1,6 +1,6 @@
1
1
  export declare const checkbox: {
2
2
  readonly default: {
3
- readonly bg: "#1B1726";
3
+ readonly bg: "#312C44";
4
4
  readonly fg: "#FFFFFF";
5
5
  readonly border: "#746F86";
6
6
  };
@@ -31,7 +31,7 @@ export declare const checkbox: {
31
31
  };
32
32
  readonly disabled: {
33
33
  readonly bg: "#29253A";
34
- readonly fg: "#413957";
34
+ readonly fg: "#746F86";
35
35
  readonly border: "#3A334D";
36
36
  };
37
37
  readonly error: {
@@ -6,7 +6,7 @@ import { surface } from '../semantic/surface.js';
6
6
  import { text } from '../semantic/text.js';
7
7
  export const checkbox = {
8
8
  default: {
9
- bg: surface.default,
9
+ bg: surface.elevated,
10
10
  fg: text.inverse,
11
11
  border: border.subtle,
12
12
  },
@@ -19,7 +19,7 @@ export declare const dropdown: {
19
19
  };
20
20
  readonly disabled: {
21
21
  readonly bg: "#29253A";
22
- readonly fg: "#413957";
22
+ readonly fg: "#746F86";
23
23
  readonly border: "#3A334D";
24
24
  };
25
25
  };
@@ -47,7 +47,7 @@ export declare const dropdown: {
47
47
  };
48
48
  readonly disabled: {
49
49
  readonly bg: "transparent";
50
- readonly fg: "#413957";
50
+ readonly fg: "#746F86";
51
51
  };
52
52
  readonly danger: {
53
53
  readonly default: {
@@ -19,16 +19,16 @@ export declare const formField: {
19
19
  readonly fg: "#FFFF99";
20
20
  };
21
21
  readonly info: {
22
- readonly fg: "#4DA3FF";
22
+ readonly fg: "#3399FF";
23
23
  };
24
24
  };
25
25
  readonly requiredMark: {
26
26
  readonly fg: "#FB7185";
27
27
  };
28
28
  readonly disabled: {
29
- readonly labelFg: "#413957";
30
- readonly descriptionFg: "#413957";
31
- readonly helperTextFg: "#413957";
29
+ readonly labelFg: "#746F86";
30
+ readonly descriptionFg: "#746F86";
31
+ readonly helperTextFg: "#746F86";
32
32
  };
33
33
  };
34
34
  //# sourceMappingURL=formField.d.ts.map
@@ -20,9 +20,9 @@ export declare const input: {
20
20
  };
21
21
  readonly disabled: {
22
22
  readonly bg: "#29253A";
23
- readonly fg: "#413957";
23
+ readonly fg: "#746F86";
24
24
  readonly border: "#3A334D";
25
- readonly placeholder: "#413957";
25
+ readonly placeholder: "#746F86";
26
26
  };
27
27
  readonly error: {
28
28
  readonly border: "#FF8A8A";
@@ -17,7 +17,7 @@ export declare const menu: {
17
17
  };
18
18
  readonly disabled: {
19
19
  readonly bg: "#29253A";
20
- readonly fg: "#413957";
20
+ readonly fg: "#746F86";
21
21
  };
22
22
  readonly danger: {
23
23
  readonly default: {
@@ -24,7 +24,7 @@ export declare const modal: {
24
24
  };
25
25
  readonly disabled: {
26
26
  readonly bg: "transparent";
27
- readonly fg: "#413957";
27
+ readonly fg: "#746F86";
28
28
  };
29
29
  };
30
30
  };
@@ -1,6 +1,6 @@
1
1
  export declare const radio: {
2
2
  readonly default: {
3
- readonly bg: "#1B1726";
3
+ readonly bg: "#312C44";
4
4
  readonly fg: "#F4F1FB";
5
5
  readonly border: "#746F86";
6
6
  };
@@ -31,7 +31,7 @@ export declare const radio: {
31
31
  };
32
32
  readonly disabled: {
33
33
  readonly bg: "#29253A";
34
- readonly fg: "#413957";
34
+ readonly fg: "#746F86";
35
35
  readonly border: "#3A334D";
36
36
  };
37
37
  };
@@ -5,7 +5,7 @@ import { surface } from '../semantic/surface.js';
5
5
  import { text } from '../semantic/text.js';
6
6
  export const radio = {
7
7
  default: {
8
- bg: surface.default,
8
+ bg: surface.elevated,
9
9
  fg: text.primary,
10
10
  border: border.subtle,
11
11
  },
@@ -1,7 +1,7 @@
1
1
  export declare const select: {
2
2
  readonly trigger: {
3
3
  readonly default: {
4
- readonly bg: "#1B1726";
4
+ readonly bg: "transparent";
5
5
  readonly fg: "#FFFFFF";
6
6
  readonly border: "#746F86";
7
7
  };
@@ -18,7 +18,7 @@ export declare const select: {
18
18
  };
19
19
  readonly disabled: {
20
20
  readonly bg: "#29253A";
21
- readonly fg: "#413957";
21
+ readonly fg: "#746F86";
22
22
  readonly border: "#3A334D";
23
23
  };
24
24
  readonly placeholder: {
@@ -55,7 +55,7 @@ export declare const select: {
55
55
  };
56
56
  readonly disabled: {
57
57
  readonly bg: "transparent";
58
- readonly fg: "#413957";
58
+ readonly fg: "#746F86";
59
59
  readonly border: "#3A334D";
60
60
  };
61
61
  };
@@ -7,7 +7,7 @@ import { text } from '../semantic/text.js';
7
7
  export const select = {
8
8
  trigger: {
9
9
  default: {
10
- bg: surface.default,
10
+ bg: 'transparent',
11
11
  fg: text.subtle,
12
12
  border: border.subtle,
13
13
  },
@@ -23,7 +23,7 @@ export declare const tabs: {
23
23
  };
24
24
  readonly disabled: {
25
25
  readonly bg: "transparent";
26
- readonly fg: "#413957";
26
+ readonly fg: "#746F86";
27
27
  readonly border: "transparent";
28
28
  };
29
29
  };
@@ -45,7 +45,7 @@ export declare const tabs: {
45
45
  };
46
46
  readonly disabled: {
47
47
  readonly bg: "transparent";
48
- readonly fg: "#413957";
48
+ readonly fg: "#746F86";
49
49
  readonly border: "transparent";
50
50
  };
51
51
  };