@carbon/themes 10.48.0 → 10.51.0-rc.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.
@@ -88,9 +88,6 @@ $layer-selected-03: _get('layer-selected-03') !default;
88
88
  /// The CSS Custom Property for the `layer-selected-hover-03` token
89
89
  $layer-selected-hover-03: _get('layer-selected-hover-03') !default;
90
90
 
91
- /// The CSS Custom Property for the `layer-disabled` token
92
- $layer-disabled: _get('layer-disabled') !default;
93
-
94
91
  /// The CSS Custom Property for the `layer-selected-inverse` token
95
92
  $layer-selected-inverse: _get('layer-selected-inverse') !default;
96
93
 
@@ -142,9 +139,6 @@ $field-03: _get('field-03') !default;
142
139
  /// The CSS Custom Property for the `field-hover-03` token
143
140
  $field-hover-03: _get('field-hover-03') !default;
144
141
 
145
- /// The CSS Custom Property for the `field-disabled` token
146
- $field-disabled: _get('field-disabled') !default;
147
-
148
142
  /// The CSS Custom Property for the `interactive` token
149
143
  $interactive: _get('interactive') !default;
150
144
 
@@ -223,11 +217,17 @@ $link-primary-hover: _get('link-primary-hover') !default;
223
217
  /// The CSS Custom Property for the `link-secondary` token
224
218
  $link-secondary: _get('link-secondary') !default;
225
219
 
220
+ /// The CSS Custom Property for the `link-visited` token
221
+ $link-visited: _get('link-visited') !default;
222
+
226
223
  /// The CSS Custom Property for the `link-inverse` token
227
224
  $link-inverse: _get('link-inverse') !default;
228
225
 
229
- /// The CSS Custom Property for the `link-visited` token
230
- $link-visited: _get('link-visited') !default;
226
+ /// The CSS Custom Property for the `link-inverse-active` token
227
+ $link-inverse-active: _get('link-inverse-active') !default;
228
+
229
+ /// The CSS Custom Property for the `link-inverse-hover` token
230
+ $link-inverse-hover: _get('link-inverse-hover') !default;
231
231
 
232
232
  /// The CSS Custom Property for the `icon-primary` token
233
233
  $icon-primary: _get('icon-primary') !default;
package/src/g10.js CHANGED
@@ -219,8 +219,6 @@ export const layerSelectedHover = hoverSelectedUI;
219
219
  export const layerSelectedInverse = ui05;
220
220
  export const borderSubtleSelected = activeUI;
221
221
 
222
- export const layerDisabled = disabled01;
223
- export const fieldDisabled = disabled01;
224
222
  export const borderDisabled = disabled01;
225
223
 
226
224
  export const textDisabled = disabled02;
package/src/g100.js CHANGED
@@ -218,8 +218,6 @@ export const layerSelectedHover = hoverSelectedUI;
218
218
  export const layerSelectedInverse = ui05;
219
219
  export const borderSubtleSelected = activeUI;
220
220
 
221
- export const layerDisabled = disabled01;
222
- export const fieldDisabled = disabled01;
223
221
  export const borderDisabled = disabled01;
224
222
 
225
223
  export const textDisabled = disabled02;
package/src/g80.js CHANGED
@@ -130,8 +130,6 @@ export const layerSelectedHover = adjustLightness(layerSelected, -6);
130
130
  export const layerSelectedInverse = gray10;
131
131
  export const borderSubtleSelected = gray50;
132
132
 
133
- export const layerDisabled = gray70;
134
- export const fieldDisabled = gray70;
135
133
  export const borderDisabled = gray70;
136
134
 
137
135
  export const textDisabled = gray50;
@@ -228,7 +226,7 @@ export const hoverRow = layerHover;
228
226
 
229
227
  export const visitedLink = linkVisited;
230
228
 
231
- export const disabled01 = layerDisabled;
229
+ export const disabled01 = gray70;
232
230
  export const disabled02 = textDisabled;
233
231
  export const disabled03 = textOnColorDisabled;
234
232
 
package/src/g90.js CHANGED
@@ -220,8 +220,6 @@ export const layerSelectedHover = hoverSelectedUI;
220
220
  export const layerSelectedInverse = ui05;
221
221
  export const borderSubtleSelected = activeUI;
222
222
 
223
- export const layerDisabled = disabled01;
224
- export const fieldDisabled = disabled01;
225
223
  export const borderDisabled = disabled01;
226
224
 
227
225
  export const textDisabled = disabled02;
package/src/next/g10.js CHANGED
@@ -8,6 +8,7 @@
8
8
  import {
9
9
  // Blue
10
10
  blue20,
11
+ blue30,
11
12
  blue40,
12
13
  blue60,
13
14
  blue70,
@@ -23,6 +24,7 @@ import {
23
24
  gray60,
24
25
  gray70,
25
26
  gray80,
27
+ gray80Hover,
26
28
  gray100,
27
29
 
28
30
  // Support
@@ -39,17 +41,17 @@ import {
39
41
  white,
40
42
  whiteHover,
41
43
  } from '@carbon/colors';
42
- import { adjustLightness, adjustAlpha } from '../tools';
44
+ import { adjustAlpha } from '../tools';
43
45
 
44
46
  // Background
45
47
  export const background = gray10;
46
48
  export const backgroundInverse = gray80;
47
49
  export const backgroundBrand = blue60;
48
50
  export const backgroundActive = gray30;
49
- export const backgroundHover = adjustLightness(background, -5);
50
- export const backgroundInverseHover = adjustLightness(backgroundInverse, 6);
51
+ export const backgroundHover = gray10Hover;
52
+ export const backgroundInverseHover = gray80Hover;
51
53
  export const backgroundSelected = gray20;
52
- export const backgroundSelectedHover = adjustLightness(backgroundSelected, -6);
54
+ export const backgroundSelectedHover = gray20Hover;
53
55
 
54
56
  // Layer
55
57
  // layer-01
@@ -74,24 +76,23 @@ export const layerSelected03 = gray20;
74
76
  export const layerSelectedHover03 = gray20Hover;
75
77
 
76
78
  // layer
77
- export const layerDisabled = white;
78
79
  export const layerSelectedInverse = gray100;
79
80
  export const layerSelectedDisabled = gray50;
80
81
 
81
82
  // layer-accent-01
82
83
  export const layerAccent01 = gray20;
83
84
  export const layerAccentActive01 = gray40;
84
- export const layerAccentHover01 = adjustLightness(layerAccent01, -6);
85
+ export const layerAccentHover01 = gray20Hover;
85
86
 
86
87
  // layer-accent-02
87
88
  export const layerAccent02 = gray20;
88
89
  export const layerAccentActive02 = gray40;
89
- export const layerAccentHover02 = adjustLightness(layerAccent01, -6);
90
+ export const layerAccentHover02 = gray20Hover;
90
91
 
91
92
  // layer-accent-03
92
93
  export const layerAccent03 = gray20;
93
94
  export const layerAccentActive03 = gray40;
94
- export const layerAccentHover03 = adjustLightness(layerAccent01, -6);
95
+ export const layerAccentHover03 = gray20Hover;
95
96
 
96
97
  // Field
97
98
  // field-01
@@ -106,9 +107,6 @@ export const fieldHover02 = gray10Hover;
106
107
  export const field03 = white;
107
108
  export const fieldHover03 = whiteHover;
108
109
 
109
- // field
110
- export const fieldDisabled = white;
111
-
112
110
  // Border
113
111
  // border-subtle-00
114
112
  export const borderSubtle00 = gray20;
@@ -156,6 +154,8 @@ export const linkPrimaryHover = blue70;
156
154
  export const linkSecondary = blue70;
157
155
  export const linkInverse = blue40;
158
156
  export const linkVisited = purple60;
157
+ export const linkInverseActive = gray10;
158
+ export const linkInverseHover = blue30;
159
159
 
160
160
  // Icon
161
161
  export const iconPrimary = gray100;
@@ -163,7 +163,7 @@ export const iconSecondary = gray70;
163
163
  export const iconInverse = white;
164
164
  export const iconOnColor = white;
165
165
  export const iconOnColorDisabled = gray50;
166
- export const iconDisabled = gray30;
166
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
167
167
 
168
168
  // Support
169
169
  export const supportError = red60;
@@ -184,7 +184,7 @@ export const focusInset = white;
184
184
  export const focusInverse = white;
185
185
 
186
186
  // Skeleton
187
- export const skeletonBackground = adjustLightness(background, -5);
187
+ export const skeletonBackground = gray10Hover;
188
188
  export const skeletonElement = gray30;
189
189
 
190
190
  // Misc
package/src/next/g100.js CHANGED
@@ -7,9 +7,10 @@
7
7
 
8
8
  import {
9
9
  // Blue
10
- blue20,
11
10
  blue40,
12
11
  blue60,
12
+ blue70,
13
+ blue80,
13
14
 
14
15
  // Gray
15
16
  gray10,
@@ -33,7 +34,7 @@ import {
33
34
  green50,
34
35
  yellow30,
35
36
  orange40,
36
- red30,
37
+ red40,
37
38
  red50,
38
39
  red60,
39
40
  purple40,
@@ -45,6 +46,8 @@ import {
45
46
 
46
47
  // Tools
47
48
  rgba,
49
+ gray100Hover,
50
+ gray10Hover,
48
51
  } from '@carbon/colors';
49
52
  import { adjustLightness, adjustAlpha } from '../tools';
50
53
 
@@ -53,16 +56,16 @@ export const background = gray100;
53
56
  export const backgroundInverse = gray10;
54
57
  export const backgroundBrand = blue60;
55
58
  export const backgroundActive = gray80;
56
- export const backgroundHover = adjustLightness(background, 7);
57
- export const backgroundInverseHover = adjustLightness(backgroundInverse, -5);
59
+ export const backgroundHover = gray100Hover;
60
+ export const backgroundInverseHover = gray10Hover;
58
61
  export const backgroundSelected = gray90;
59
- export const backgroundSelectedHover = adjustLightness(backgroundSelected, 5);
62
+ export const backgroundSelectedHover = gray90Hover;
60
63
 
61
64
  // Layer
62
65
  // layer-01
63
66
  export const layer01 = gray90;
64
67
  export const layerActive01 = gray70;
65
- export const layerHover01 = adjustLightness(layer01, 5);
68
+ export const layerHover01 = gray90Hover;
66
69
  export const layerSelected01 = gray80;
67
70
  export const layerSelectedHover01 = gray80Hover;
68
71
 
@@ -81,14 +84,13 @@ export const layerSelected03 = gray60;
81
84
  export const layerSelectedHover03 = gray60Hover;
82
85
 
83
86
  // layer
84
- export const layerDisabled = gray90;
85
87
  export const layerSelectedInverse = gray10;
86
88
  export const layerSelectedDisabled = gray40;
87
89
 
88
90
  // layer-accent-01
89
91
  export const layerAccent01 = gray80;
90
92
  export const layerAccentActive01 = gray60;
91
- export const layerAccentHover01 = adjustLightness(layerAccent01, 6);
93
+ export const layerAccentHover01 = gray80Hover;
92
94
 
93
95
  // layer-accent-02
94
96
  export const layerAccent02 = gray70;
@@ -113,9 +115,6 @@ export const fieldHover02 = gray80Hover;
113
115
  export const field03 = gray70;
114
116
  export const fieldHover03 = gray70Hover;
115
117
 
116
- // field
117
- export const fieldDisabled = gray80;
118
-
119
118
  // Border
120
119
  // border-subtle-00
121
120
  export const borderSubtle00 = gray80;
@@ -151,7 +150,7 @@ export const textPrimary = gray10;
151
150
  export const textSecondary = gray30;
152
151
  export const textPlaceholder = adjustAlpha(textPrimary, 0.4);
153
152
  export const textHelper = gray40;
154
- export const textError = red30;
153
+ export const textError = red40;
155
154
  export const textInverse = gray100;
156
155
  export const textOnColor = white;
157
156
  export const textOnColorDisabled = adjustAlpha(textOnColor, 0.25);
@@ -163,6 +162,8 @@ export const linkPrimaryHover = blue30;
163
162
  export const linkSecondary = blue30;
164
163
  export const linkInverse = blue60;
165
164
  export const linkVisited = purple40;
165
+ export const linkInverseActive = gray100;
166
+ export const linkInverseHover = blue70;
166
167
 
167
168
  // Icon
168
169
  export const iconPrimary = gray10;
@@ -170,7 +171,7 @@ export const iconSecondary = gray30;
170
171
  export const iconInverse = gray100;
171
172
  export const iconOnColor = white;
172
173
  export const iconOnColorDisabled = adjustAlpha(iconOnColor, 0.25);
173
- export const iconDisabled = gray70;
174
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
174
175
 
175
176
  // Support
176
177
  export const supportError = red50;
@@ -180,7 +181,7 @@ export const supportInfo = blue50;
180
181
  export const supportErrorInverse = red60;
181
182
  export const supportSuccessInverse = green50;
182
183
  export const supportWarningInverse = yellow30;
183
- export const supportInfoInverse = blue60;
184
+ export const supportInfoInverse = blue70;
184
185
  export const supportCautionMinor = yellow30;
185
186
  export const supportCautionMajor = orange40;
186
187
  export const supportCautionUndefined = purple50;
@@ -196,9 +197,9 @@ export const skeletonElement = gray80;
196
197
 
197
198
  // Misc
198
199
  export const interactive = blue50;
199
- export const highlight = blue20;
200
+ export const highlight = blue80;
200
201
  export const overlay = rgba(black, 0.65);
201
- export const toggleOff = gray50;
202
+ export const toggleOff = gray60;
202
203
  export const shadow = rgba(black, 0.8);
203
204
 
204
205
  export {
package/src/next/g90.js CHANGED
@@ -44,24 +44,27 @@ import {
44
44
 
45
45
  // Tools
46
46
  rgba,
47
+ gray90Hover,
48
+ gray10Hover,
49
+ gray80Hover,
47
50
  } from '@carbon/colors';
48
- import { adjustLightness, adjustAlpha } from '../tools';
51
+ import { adjustAlpha } from '../tools';
49
52
 
50
53
  // Background
51
54
  export const background = gray90;
52
55
  export const backgroundInverse = gray10;
53
56
  export const backgroundBrand = blue60;
54
57
  export const backgroundActive = gray80;
55
- export const backgroundHover = adjustLightness(background, 5);
56
- export const backgroundInverseHover = adjustLightness(backgroundInverse, -5);
58
+ export const backgroundHover = gray90Hover;
59
+ export const backgroundInverseHover = gray10Hover;
57
60
  export const backgroundSelected = gray80;
58
- export const backgroundSelectedHover = adjustLightness(backgroundSelected, 6);
61
+ export const backgroundSelectedHover = gray80Hover;
59
62
 
60
63
  // Layer
61
64
  // layer-01
62
65
  export const layer01 = gray80;
63
66
  export const layerActive01 = gray60;
64
- export const layerHover01 = adjustLightness(layer01, 6);
67
+ export const layerHover01 = gray80Hover;
65
68
  export const layerSelected01 = gray70;
66
69
  export const layerSelectedHover01 = gray70Hover;
67
70
 
@@ -80,19 +83,18 @@ export const layerSelected03 = gray50;
80
83
  export const layerSelectedHover03 = gray50Hover;
81
84
 
82
85
  // layer
83
- export const layerDisabled = gray80;
84
86
  export const layerSelectedInverse = gray10;
85
87
  export const layerSelectedDisabled = gray40;
86
88
 
87
89
  // layer-accent-01
88
90
  export const layerAccent01 = gray70;
89
91
  export const layerAccentActive01 = gray50;
90
- export const layerAccentHover01 = adjustLightness(layerAccent01, 7);
92
+ export const layerAccentHover01 = gray70Hover;
91
93
 
92
94
  // layer-accent-02
93
95
  export const layerAccent02 = gray60;
94
96
  export const layerAccentActive02 = gray80;
95
- export const layerAccentHover02 = adjustLightness(layerAccent01, -7);
97
+ export const layerAccentHover02 = gray60Hover;
96
98
 
97
99
  // layer-accent-03
98
100
  export const layerAccent03 = gray50;
@@ -102,7 +104,7 @@ export const layerAccentHover03 = gray50Hover;
102
104
  // Field
103
105
  // field-01
104
106
  export const field01 = gray80;
105
- export const fieldHover01 = adjustLightness(field01, 6);
107
+ export const fieldHover01 = gray80Hover;
106
108
 
107
109
  // field-02
108
110
  export const field02 = gray70;
@@ -112,9 +114,6 @@ export const fieldHover02 = gray70Hover;
112
114
  export const field03 = gray60;
113
115
  export const fieldHover03 = gray60Hover;
114
116
 
115
- // field
116
- export const fieldDisabled = gray80;
117
-
118
117
  // Border
119
118
  // border-subtle-00
120
119
  export const borderSubtle00 = gray70;
@@ -162,6 +161,8 @@ export const linkPrimaryHover = blue30;
162
161
  export const linkSecondary = blue30;
163
162
  export const linkInverse = blue60;
164
163
  export const linkVisited = purple40;
164
+ export const linkInverseActive = gray100;
165
+ export const linkInverseHover = blue70;
165
166
 
166
167
  // Icon
167
168
  export const iconPrimary = gray10;
@@ -169,7 +170,7 @@ export const iconSecondary = gray30;
169
170
  export const iconInverse = gray100;
170
171
  export const iconOnColor = white;
171
172
  export const iconOnColorDisabled = adjustAlpha(iconOnColor, 0.25);
172
- export const iconDisabled = gray60;
173
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
173
174
 
174
175
  // Support
175
176
  export const supportError = red40;
@@ -179,7 +180,7 @@ export const supportInfo = blue50;
179
180
  export const supportErrorInverse = red60;
180
181
  export const supportSuccessInverse = green50;
181
182
  export const supportWarningInverse = yellow30;
182
- export const supportInfoInverse = blue60;
183
+ export const supportInfoInverse = blue70;
183
184
  export const supportCautionMinor = yellow30;
184
185
  export const supportCautionMajor = orange40;
185
186
  export const supportCautionUndefined = purple50;
@@ -190,7 +191,7 @@ export const focusInset = gray100;
190
191
  export const focusInverse = blue60;
191
192
 
192
193
  // Skeleton
193
- export const skeletonBackground = adjustLightness(background, 5);
194
+ export const skeletonBackground = gray90Hover;
194
195
  export const skeletonElement = gray70;
195
196
 
196
197
  // Misc
@@ -98,10 +98,6 @@ export const layer = TokenGroup.create({
98
98
  state: 'hover',
99
99
  name: 'layer-selected-hover-03',
100
100
  },
101
- {
102
- state: 'disabled',
103
- name: 'layer-disabled',
104
- },
105
101
  {
106
102
  name: 'layer-selected-inverse',
107
103
  },
@@ -170,10 +166,6 @@ export const field = TokenGroup.create({
170
166
  state: 'hover',
171
167
  name: 'field-hover-03',
172
168
  },
173
- {
174
- state: 'disabled',
175
- name: 'field-disabled',
176
- },
177
169
  ],
178
170
  });
179
171
 
@@ -261,11 +253,13 @@ export const link = TokenGroup.create({
261
253
  name: 'link-primary-hover',
262
254
  },
263
255
  'link-secondary',
264
- 'link-inverse',
265
256
  {
266
257
  state: 'visited',
267
258
  name: 'link-visited',
268
259
  },
260
+ 'link-inverse',
261
+ 'link-inverse-active',
262
+ 'link-inverse-hover',
269
263
  ],
270
264
  });
271
265
 
package/src/next/white.js CHANGED
@@ -8,6 +8,7 @@
8
8
  import {
9
9
  // Blue
10
10
  blue20,
11
+ blue30,
11
12
  blue40,
12
13
  blue60,
13
14
  blue70,
@@ -37,8 +38,10 @@ import {
37
38
  // Constants
38
39
  white,
39
40
  whiteHover,
41
+ gray80Hover,
42
+ gray10Hover,
40
43
  } from '@carbon/colors';
41
- import { adjustLightness, adjustAlpha } from '../tools';
44
+ import { adjustAlpha } from '../tools';
42
45
 
43
46
  // Background
44
47
  export const background = white;
@@ -46,67 +49,63 @@ export const backgroundInverse = gray80;
46
49
  export const backgroundBrand = blue60;
47
50
  export const backgroundActive = gray30;
48
51
  export const backgroundHover = whiteHover;
49
- export const backgroundInverseHover = adjustLightness(backgroundInverse, 6);
52
+ export const backgroundInverseHover = gray80Hover;
50
53
  export const backgroundSelected = gray20;
51
- export const backgroundSelectedHover = adjustLightness(backgroundSelected, -6);
54
+ export const backgroundSelectedHover = gray20Hover;
52
55
 
53
56
  // Layer
54
57
  // layer-01
55
58
  export const layer01 = gray10;
56
59
  export const layerActive01 = gray30;
57
- export const layerHover01 = adjustLightness(layer01, -5);
60
+ export const layerHover01 = gray10Hover;
58
61
  export const layerSelected01 = gray20;
59
62
  export const layerSelectedHover01 = gray20Hover;
60
63
 
61
64
  // layer-02
62
65
  export const layer02 = white;
63
66
  export const layerActive02 = gray30;
64
- export const layerHover02 = adjustLightness(layer01, -5);
67
+ export const layerHover02 = whiteHover;
65
68
  export const layerSelected02 = gray20;
66
69
  export const layerSelectedHover02 = gray20Hover;
67
70
 
68
71
  // layer-03
69
72
  export const layer03 = gray10;
70
73
  export const layerActive03 = gray30;
71
- export const layerHover03 = adjustLightness(layer01, -5);
74
+ export const layerHover03 = gray10Hover;
72
75
  export const layerSelected03 = gray20;
73
76
  export const layerSelectedHover03 = gray20Hover;
74
77
 
75
78
  // layer
76
- export const layerDisabled = gray10;
77
79
  export const layerSelectedInverse = gray100;
78
80
  export const layerSelectedDisabled = gray50;
79
81
 
80
82
  // layer-accent-01
81
83
  export const layerAccent01 = gray20;
82
84
  export const layerAccentActive01 = gray40;
83
- export const layerAccentHover01 = adjustLightness(layerAccent01, -6);
85
+ export const layerAccentHover01 = gray20Hover;
84
86
 
85
87
  // layer-accent-02
86
88
  export const layerAccent02 = gray20;
87
89
  export const layerAccentActive02 = gray40;
88
- export const layerAccentHover02 = adjustLightness(layerAccent01, -6);
90
+ export const layerAccentHover02 = gray20Hover;
89
91
 
90
92
  // layer-accent-03
91
93
  export const layerAccent03 = gray20;
92
94
  export const layerAccentActive03 = gray40;
93
- export const layerAccentHover03 = adjustLightness(layerAccent01, -6);
95
+ export const layerAccentHover03 = gray20Hover;
94
96
 
95
97
  // Field
96
98
  // field-01
97
99
  export const field01 = gray10;
98
- export const fieldHover01 = adjustLightness(field01, -5);
100
+ export const fieldHover01 = gray10Hover;
99
101
 
100
102
  // field-02
101
103
  export const field02 = white;
102
- export const fieldHover02 = adjustLightness(field01, -5);
104
+ export const fieldHover02 = whiteHover;
103
105
 
104
106
  // field-03
105
107
  export const field03 = gray10;
106
- export const fieldHover03 = adjustLightness(field01, -5);
107
-
108
- // field
109
- export const fieldDisabled = gray10;
108
+ export const fieldHover03 = gray10Hover;
110
109
 
111
110
  // Border
112
111
  // border-subtle-00
@@ -155,6 +154,8 @@ export const linkPrimaryHover = blue70;
155
154
  export const linkSecondary = blue70;
156
155
  export const linkInverse = blue40;
157
156
  export const linkVisited = purple60;
157
+ export const linkInverseActive = gray10;
158
+ export const linkInverseHover = blue30;
158
159
 
159
160
  // Icon
160
161
  export const iconPrimary = gray100;
@@ -162,7 +163,7 @@ export const iconSecondary = gray70;
162
163
  export const iconInverse = white;
163
164
  export const iconOnColor = white;
164
165
  export const iconOnColorDisabled = gray50;
165
- export const iconDisabled = gray30;
166
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
166
167
 
167
168
  // Support
168
169
  export const supportError = red60;
package/src/tokens.js CHANGED
@@ -186,8 +186,6 @@ const colors = [
186
186
  'layerSelectedInverse',
187
187
  'borderSubtleSelected',
188
188
 
189
- 'layerDisabled',
190
- 'fieldDisabled',
191
189
  'borderDisabled',
192
190
 
193
191
  'textDisabled',
@@ -420,8 +418,6 @@ export const unstable__meta = {
420
418
  'layerSelectedInverse',
421
419
  'borderSubtleSelected',
422
420
 
423
- 'layerDisabled',
424
- 'fieldDisabled',
425
421
  'borderDisabled',
426
422
 
427
423
  'textDisabled',
package/src/v9.js CHANGED
@@ -183,8 +183,6 @@ export const layerSelectedHover = hoverSelectedUI;
183
183
  export const layerSelectedInverse = ui05;
184
184
  export const borderSubtleSelected = activeUI;
185
185
 
186
- export const layerDisabled = disabled01;
187
- export const fieldDisabled = disabled01;
188
186
  export const borderDisabled = disabled01;
189
187
 
190
188
  export const textDisabled = disabled02;
package/src/white.js CHANGED
@@ -219,8 +219,6 @@ export const layerSelectedHover = hoverSelectedUI;
219
219
  export const layerSelectedInverse = ui05;
220
220
  export const borderSubtleSelected = activeUI;
221
221
 
222
- export const layerDisabled = disabled01;
223
- export const fieldDisabled = disabled01;
224
222
  export const borderDisabled = disabled01;
225
223
 
226
224
  export const textDisabled = disabled02;