igniteui-theming 4.1.0-beta.1 → 4.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-theming",
3
- "version": "4.1.0-beta.1",
3
+ "version": "4.2.0",
4
4
  "description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -177,12 +177,15 @@ $_enhanced-accessibility: false;
177
177
  $s: #{var(--ig-#{$color}-#{$variant})};
178
178
  $contrast: if(meta.type-of($variant) == string, string.index($variant, 'contrast'), false);
179
179
  $meta: if($palette, map.get($palette, '_meta'), null);
180
+ $_alpha: if($opacity, $opacity, 1);
181
+ $_hsl-alpha: hsla($s, if($opacity, $opacity, $a));
182
+ $_mix-alpha: color-mix(in oklch, $s #{$_alpha * 100%}, transparent);
180
183
 
181
184
  @if not($palette) or not($meta) {
182
- @return if($contrast, $s, hsla($s, if($opacity, $opacity, $a)));
185
+ @return if($contrast, $_mix-alpha, $_hsl-alpha);
183
186
  }
184
187
 
185
- @return rgba(map.get($c, $variant), $alpha: if($opacity, $opacity, 1));
188
+ @return rgba(map.get($c, $variant), $alpha: $_alpha);
186
189
  }
187
190
 
188
191
  /// Retrieves a contrast text color for a given color variant from a color palette.
@@ -191,6 +194,7 @@ $_enhanced-accessibility: false;
191
194
  /// @param {Map} $palette [null] - The source palette map (optional).
192
195
  /// @param {String} $color [primary] - The target color from the color palette.
193
196
  /// @param {Number | String} $variant [500] - The target color shade from the color palette.
197
+ /// @param {Number} $opacity [null] - Optional opacity to apply to the color shade.
194
198
  /// @requires {function} color
195
199
  /// @returns {Color | String} - The raw contrast color shade or CSS variable from the palette.
196
200
  /// @example scss without passing a palette
@@ -198,8 +202,8 @@ $_enhanced-accessibility: false;
198
202
  /// background: color($color: 'primary', $variant: 200);
199
203
  /// color: contrast-color($color: 'primary', $variant: 200);
200
204
  /// }
201
- @function contrast-color($palette: null, $color: primary, $variant: 500) {
202
- @return color($palette, $color, #{$variant}-contrast);
205
+ @function contrast-color($palette: null, $color: primary, $variant: 500, $opacity: null) {
206
+ @return color($palette, $color, #{$variant}-contrast, $opacity);
203
207
  }
204
208
 
205
209
  /// Returns a contrast color for a passed color.
@@ -11,7 +11,9 @@
11
11
  /// @type {Map}
12
12
  /// @prop {Map} item-disabled-border [color: ('gray', 100)] - The border color for a disabled item in the button group.
13
13
  /// @prop {Map} item-border-color [color: ('gray', 100)] - The border color between button group items.
14
+ /// @prop {Map} item-focused-border-color [color: ('gray', 100)] - The focused border color for an item from the button group.
14
15
  /// @prop {Map} item-hover-background [color: ('gray', 100), .8] - The hover background color for button group items.
16
+ /// @prop {Map} item-focused-background [color: ('gray', 100), .8] - The focused background color for button group items.
15
17
  /// @prop {Map} item-selected-background [color: ('gray', 200)] - The background color for a selected item in the button group.
16
18
  /// @prop {Map} item-selected-hover-background [color: ('gray', 300, .8)] - The background color for a selected item in hover or focus state in the button group.
17
19
  /// @prop {Map} item-selected-border-color [color: ('gray', 300)] - The border color for button group selected items.
@@ -24,6 +26,14 @@ $base-dark-button-group: (
24
26
  ),
25
27
  ),
26
28
 
29
+ item-focused-background: (
30
+ color: (
31
+ 'gray',
32
+ 100,
33
+ 0.8,
34
+ ),
35
+ ),
36
+
27
37
  item-selected-background: (
28
38
  color: (
29
39
  'gray',
@@ -53,6 +63,13 @@ $base-dark-button-group: (
53
63
  ),
54
64
  ),
55
65
 
66
+ item-focused-border-color: (
67
+ color: (
68
+ 'gray',
69
+ 100,
70
+ ),
71
+ ),
72
+
56
73
  item-disabled-border: (
57
74
  color: (
58
75
  'gray',
@@ -69,16 +86,17 @@ $dark-button-group: extend($light-button-group, $base-dark-button-group);
69
86
 
70
87
  /// Generates a dark fluent button-group schema based on a mix of $fluent-button-group and $base-dark-button-group
71
88
  /// @type {Map}
72
- /// @prop {Map} item-border-color [color: ('gray', 100)] - The border color for button group items.
73
- /// @prop {Map} item-selected-border-color [color: ('gray', 100)] - The border color for button group selected items.
74
- /// @prop {Map} item-disabled-border: [color: ('gray', 100)] - The border color for button group disabled items.
89
+ /// @prop {Map} item-border-color [color: ('gray', 400)] - The border color for button group items.
90
+ /// @prop {Map} item-focused-border-color [color: ('gray', 400)] - The focused border color for button group items.
91
+ /// @prop {Map} item-disabled-border: [color: ('gray', 400)] - The border color for button group disabled items.
75
92
  /// @prop {Map} item-text-color [color: ('gray', 900)] - The text color for button group items.
76
- /// @prop {Map} item-hover-text-color [color: ('primary', 200)] - The text color for button group items on hover.
77
- /// @prop {Color} item-hover-background [color: ('gray', 50)] - The background color for button group items on hover.
78
- /// @prop {Map} item-selected-background [color: ('gray', 100, .5)] - The background color for button group selected items.
79
- /// @prop {Map} item-selected-hover-background [color: ('gray', 100, .5)] - The background color for button group selected items on hover.
80
- /// @prop {Map} item-selected-text-color [color: ('primary', 200)] - The text color for button group selected items.
81
- /// @prop {Color} disabled-background-color [color: ('gray', 50)] - The background color for button group disabled items.
93
+ /// @prop {Map} item-hover-background [color: ('gray', 50)] - The background color for button group items on hover.
94
+ /// @prop {Map} item-focused-background [color: ('gray', 100)] - The focused background color for button group items.
95
+ /// @prop {Map} item-selected-background [color: ('gray', 200)] - The background color for button group selected items.
96
+ /// @prop {Map} item-selected-hover-background [color: ('gray', 300)] - The background color for a selected item in hover or focus state in the button group.
97
+ /// @prop {Map} item-selected-border-color [color: ('gray', 400)] - The border color for button group selected items.
98
+ /// @prop {Map} disabled-background-color [color: ('gray', 50)] - The background color for button group disabled items.
99
+ /// @prop {Map} disabled-text-color [color: ('gray', 300)]- The text/icon color for a disabled item in the button group.
82
100
  /// @requires $fluent-button-group
83
101
  /// @requires $base-dark-button-group
84
102
  $dark-fluent-button-group: extend(
@@ -92,61 +110,59 @@ $dark-fluent-button-group: extend(
92
110
  ),
93
111
  ),
94
112
 
95
- item-selected-text-color: (
113
+ item-hover-background: (
96
114
  color: (
97
- 'primary',
98
- 200,
115
+ 'gray',
116
+ 50,
99
117
  ),
100
118
  ),
101
119
 
102
- item-hover-text-color: (
120
+ item-focused-background: (
103
121
  color: (
104
- 'primary',
105
- 200,
122
+ 'gray',
123
+ 100,
106
124
  ),
107
125
  ),
108
126
 
109
- item-hover-background: (
127
+ item-selected-background: (
110
128
  color: (
111
129
  'gray',
112
- 50,
130
+ 200,
113
131
  ),
114
132
  ),
115
133
 
116
- item-selected-background: (
134
+ item-selected-hover-background: (
117
135
  color: (
118
136
  'gray',
119
- 100,
120
- 0.5,
137
+ 300,
121
138
  ),
122
139
  ),
123
140
 
124
- item-selected-hover-background: (
141
+ item-border-color: (
125
142
  color: (
126
143
  'gray',
127
- 100,
128
- 0.5,
144
+ 400,
129
145
  ),
130
146
  ),
131
147
 
132
- item-border-color: (
148
+ item-focused-border-color: (
133
149
  color: (
134
150
  'gray',
135
- 100,
151
+ 400,
136
152
  ),
137
153
  ),
138
154
 
139
155
  item-selected-border-color: (
140
156
  color: (
141
157
  'gray',
142
- 100,
158
+ 400,
143
159
  ),
144
160
  ),
145
161
 
146
162
  item-disabled-border: (
147
163
  color: (
148
164
  'gray',
149
- 100,
165
+ 400,
150
166
  ),
151
167
  ),
152
168
 
@@ -156,6 +172,13 @@ $dark-fluent-button-group: extend(
156
172
  50,
157
173
  ),
158
174
  ),
175
+
176
+ disabled-text-color: (
177
+ color: (
178
+ 'gray',
179
+ 300,
180
+ ),
181
+ ),
159
182
  )
160
183
  );
161
184
 
@@ -9,41 +9,54 @@
9
9
 
10
10
  /// Generates a dark calendar schema.
11
11
  /// @type {Map}
12
-
13
- /// Generates a dark calendar schema.
14
- /// @type {Map}
12
+ /// @prop {Map} date-disabled-text-color [color: ('gray', 500)] - The text color for disabled dates.
13
+ /// @prop {Map} date-selected-hover-foreground [contrast-color: ('secondary', 500)] - The hover text color for the selected date.
14
+ /// @prop {Map} date-selected-focus-foreground [contrast-color: ('secondary', 500)] - The focus text color for the selected date.
15
15
  /// @requires $light-calendar
16
- $dark-calendar: extend($light-calendar);
17
-
18
- /// Generates a dark fluent calendar schema.
19
- /// @type {Map}
20
- /// @prop {Map} date-disabled-foreground [color: ('gray', 300)] - The foreground of disabled dates.
21
- /// @requires $fluent-calendar
22
- $dark-fluent-calendar: extend(
23
- $fluent-calendar,
16
+ $dark-calendar: extend(
17
+ $light-calendar,
24
18
  (
25
- date-disabled-foreground: (
19
+ date-disabled-text-color: (
26
20
  color: (
27
21
  'gray',
28
- 300,
22
+ 500,
23
+ ),
24
+ ),
25
+
26
+ date-selected-hover-foreground: (
27
+ contrast-color: (
28
+ 'secondary',
29
+ 500,
30
+ ),
31
+ ),
32
+
33
+ date-selected-focus-foreground: (
34
+ contrast-color: (
35
+ 'secondary',
36
+ 500,
29
37
  ),
30
38
  ),
31
39
  )
32
40
  );
33
41
 
42
+ /// Generates a dark fluent calendar schema.
43
+ /// @type {Map}
44
+ /// @requires $fluent-calendar
45
+ $dark-fluent-calendar: extend($fluent-calendar);
46
+
34
47
  /// Generates a dark bootstrap calendar schema.
35
48
  /// @type {Map}
36
49
  /// @prop {Map} content-background [color: ('gray', 50)] - The main content background color.
37
50
  /// @prop {Color} picker-background-color [color: ('gray', 100, .5)] - The igx calendar picker background color.
38
51
  /// @prop {Map} border-color [color: ('gray', 100)] - The calendar border color.
39
- /// @prop {Map} picker-foreground [contrast-color: ('surface')]- The idle picker month/year color.
40
- /// @prop {Map} date-selected-foreground [contrast-color: ('secondary', 600)] - The text color for the selected date.
41
- /// @prop {Map} date-current-foreground [contrast-color: 'surface'] - The text color for the current date.
42
- /// @prop {Map} date-current-hover-foreground [color: ('surface')] - The hover text color for the current date.
43
- /// @prop {Map} date-current-focus-foreground [color: ('surface')] - The focus text color for the current date.
52
+ /// @prop {Map} picker-text-color [contrast-color: ('surface')]- The idle picker month/year color.
53
+ /// @prop {Map} date-selected-text-color [contrast-color: ('secondary', 600)] - The text color for the selected date.
54
+ /// @prop {Map} date-current-text-color [contrast-color: 'surface'] - The text color for the current date.
55
+ /// @prop {Map} date-current-hover-text-color [color: ('surface')] - The hover text color for the current date.
56
+ /// @prop {Map} date-current-focus-text-color [color: ('surface')] - The focus text color for the current date.
44
57
  /// @prop {Map} week-number-background [('gray', 300, .2)] - The background color of the week number column.
45
- /// @prop {Map} date-selected-hover-foreground [contrast-color: ('surface')] - The hover text color for the selected date.
46
- /// @prop {Map} date-selected-focus-foreground [contrast-color: ('surface')] - The focus text color for the selected date.
58
+ /// @prop {Map} date-selected-hover-text-color [contrast-color: ('surface')] - The hover text color for the selected date.
59
+ /// @prop {Map} date-selected-focus-text-color [contrast-color: ('surface')] - The focus text color for the selected date.
47
60
  /// @requires $bootstrap-calendar
48
61
  $dark-bootstrap-calendar: extend(
49
62
  $bootstrap-calendar,
@@ -70,40 +83,40 @@ $dark-bootstrap-calendar: extend(
70
83
  ),
71
84
  ),
72
85
 
73
- picker-foreground: (
86
+ picker-text-color: (
74
87
  contrast-color: (
75
88
  'surface',
76
89
  ),
77
90
  ),
78
91
 
79
- date-selected-foreground: (
92
+ date-selected-text-color: (
80
93
  contrast-color: (
81
94
  'secondary',
82
95
  600,
83
96
  ),
84
97
  ),
85
98
 
86
- date-selected-hover-foreground: (
99
+ date-selected-hover-text-color: (
87
100
  contrast-color: (
88
101
  'surface',
89
102
  ),
90
103
  ),
91
104
 
92
- date-selected-focus-foreground: (
105
+ date-selected-focus-text-color: (
93
106
  contrast-color: (
94
107
  'surface',
95
108
  ),
96
109
  ),
97
110
 
98
- date-current-foreground: (
111
+ date-current-text-color: (
99
112
  contrast-color: 'surface',
100
113
  ),
101
114
 
102
- date-current-hover-foreground: (
115
+ date-current-hover-text-color: (
103
116
  contrast-color: 'surface',
104
117
  ),
105
118
 
106
- date-current-focus-foreground: (
119
+ date-current-focus-text-color: (
107
120
  contrast-color: 'surface',
108
121
  ),
109
122
 
@@ -119,5 +132,155 @@ $dark-bootstrap-calendar: extend(
119
132
 
120
133
  /// Generates a dark indigo calendar schema.
121
134
  /// @type {Map}
135
+ /// @prop {Map} content-text-color [contrast-color: ('surface')] - The main content text color.
136
+ /// @prop {Map} inactive-text-color [color: ('gray', 700)] - The text color for previous and next month dates.
137
+ /// @prop {Map} label-color [color: ('gray', 700)] - The text color for weekday labels.
138
+ /// @prop {Map} weekend-text-color [color: ('gray', 700)] - The text color for weekend days.
139
+ /// @prop {Map} picker-arrow-color [color: ('gray', 800)] - The idle picker arrow color.
140
+ /// @prop {Map} picker-arrow-hover-color [contrast-color: ('surface')] - The picker hover arrow color.
141
+ /// @prop {Map} picker-text-color [color: ('gray', 800)]- The idle picker month/year color.
142
+ /// @prop {Map} picker-text-hover-color [contrast-color: ('surface')]- The hover picker month/year color.
143
+ /// @prop {Map} month-hover-text-color [color: ('primary', 300)] - The month hover text color.
144
+ /// @prop {Map} year-hover-text-color [color: ('primary', 300)] - The year hover text color.
145
+ /// @prop {Map} year-current-text-color [color: ('primary', 300)] - The text color for the current/selected year.
146
+ /// @prop {Map} month-current-text-color [color: ('primary', 300)]- The text color for the current/selected month.
147
+ /// @prop {Map} month-hover-current-text-color [color: ('primary', 300)]- The text color for the current/selected month on hover.
148
+ /// @prop {Map} date-selected-hover-text-color [contrast-color: ('surface')] - The hover text color for the selected date.
149
+ /// @prop {Map} date-selected-focus-text-color [contrast-color: ('surface')] - The focus text color for the selected date.
150
+ /// @prop {Map} date-current-hover-text-color [color: ('primary', 200)] - The hover text color for the current date.
151
+ /// @prop {Map} date-current-focus-text-color [color: ('gray', 100)] - The focus text color for the current date.
152
+ /// @prop {Map} date-current-hover-bg-color [color: ('gray', 100)] - The hover background color for the current date.
153
+ /// @prop {Map} date-current-focus-bg-color [color: ('gray', 100)] - The focus background color for the current date.
122
154
  /// @requires $indigo-calendar
123
- $dark-indigo-calendar: extend($indigo-calendar);
155
+ $dark-indigo-calendar: extend(
156
+ $indigo-calendar,
157
+ (
158
+ content-text-color: (
159
+ contrast-color: (
160
+ 'surface',
161
+ ),
162
+ ),
163
+
164
+ date-current-hover-bg-color: (
165
+ color: (
166
+ 'gray',
167
+ 100,
168
+ ),
169
+ ),
170
+
171
+ date-current-focus-bg-color: (
172
+ color: (
173
+ 'gray',
174
+ 100,
175
+ ),
176
+ ),
177
+
178
+ date-current-hover-text-color: (
179
+ color: (
180
+ 'primary',
181
+ 200,
182
+ ),
183
+ ),
184
+
185
+ date-current-focus-text-color: (
186
+ color: (
187
+ 'primary',
188
+ 200,
189
+ ),
190
+ ),
191
+
192
+ inactive-text-color: (
193
+ color: (
194
+ 'gray',
195
+ 700,
196
+ ),
197
+ ),
198
+
199
+ date-selected-hover-text-color: (
200
+ contrast-color: (
201
+ 'surface',
202
+ ),
203
+ ),
204
+
205
+ date-selected-focus-text-color: (
206
+ contrast-color: (
207
+ 'surface',
208
+ ),
209
+ ),
210
+
211
+ label-color: (
212
+ color: (
213
+ 'gray',
214
+ 700,
215
+ ),
216
+ ),
217
+
218
+ weekend-text-color: (
219
+ color: (
220
+ 'gray',
221
+ 700,
222
+ ),
223
+ ),
224
+
225
+ picker-arrow-color: (
226
+ color: (
227
+ 'gray',
228
+ 800,
229
+ ),
230
+ ),
231
+
232
+ picker-arrow-hover-color: (
233
+ contrast-color: (
234
+ 'surface',
235
+ ),
236
+ ),
237
+
238
+ picker-text-color: (
239
+ color: (
240
+ 'gray',
241
+ 800,
242
+ ),
243
+ ),
244
+
245
+ picker-text-hover-color: (
246
+ contrast-color: (
247
+ 'surface',
248
+ ),
249
+ ),
250
+
251
+ month-hover-text-color: (
252
+ color: (
253
+ 'primary',
254
+ 300,
255
+ ),
256
+ ),
257
+
258
+ year-hover-text-color: (
259
+ color: (
260
+ 'primary',
261
+ 300,
262
+ ),
263
+ ),
264
+
265
+ month-current-text-color: (
266
+ color: (
267
+ 'primary',
268
+ 300,
269
+ ),
270
+ ),
271
+
272
+ month-hover-current-text-color: (
273
+ color: (
274
+ 'primary',
275
+ 300,
276
+ ),
277
+ ),
278
+
279
+ year-current-text-color: (
280
+ color: (
281
+ 'primary',
282
+ 300,
283
+ ),
284
+ ),
285
+ )
286
+ );
@@ -11,10 +11,12 @@
11
11
  /// Generates a light button group schema.
12
12
  /// @type {Map}
13
13
  /// @prop {Map} item-text-color [color: ('gray', 700)]- The text color for button group items.
14
- /// @prop {Map} item-background [color: ('gray', 50)] - The background color for button group items .
14
+ /// @prop {Map} item-background [color: ('gray', 50)] - The background color for button group items.
15
15
  /// @prop {Map} item-border-color [color: ('gray', 400)] - The border color between button group items.
16
+ /// @prop {Map} item-focused-border-color [color: ('gray', 400)] - The focused border color for an item from the button group.
16
17
  /// @prop {Map} item-hover-text-color [color: ('gray', 800)] - The hover text color for button group items.
17
18
  /// @prop {Map} item-hover-background [color: ('gray', 300)] - The hover background color for button group items.
19
+ /// @prop {Map} item-focused-background [color: ('gray', 300)] - The focused background color for button group items.
18
20
  /// @prop {Map} disabled-text-color [color: ('gray', 400)]- The text/icon color for a disabled item in the button group.
19
21
  /// @prop {Map} disabled-background-color [color: ('gray', 50)] - The background color for a disabled item in the button group.
20
22
  /// @prop {Map} item-disabled-border [color: ('gray', 400)] - The border color for a disabled item in the button group.
@@ -46,6 +48,13 @@ $light-button-group: extend(
46
48
  ),
47
49
  ),
48
50
 
51
+ item-focused-border-color: (
52
+ color: (
53
+ 'gray',
54
+ 400,
55
+ ),
56
+ ),
57
+
49
58
  item-text-color: (
50
59
  color: (
51
60
  'gray',
@@ -67,6 +76,13 @@ $light-button-group: extend(
67
76
  ),
68
77
  ),
69
78
 
79
+ item-focused-background: (
80
+ color: (
81
+ 'gray',
82
+ 300,
83
+ ),
84
+ ),
85
+
70
86
  item-selected-text-color: (
71
87
  color: (
72
88
  'gray',
@@ -132,12 +148,19 @@ $light-button-group: extend(
132
148
  /// Generates a fluent button group schema.
133
149
  /// @type {Map}
134
150
  /// @prop {Map} item-text-color [color: ('gray', 900)]- The text color for button group items.
135
- /// @prop {Map} item-hover-text-color [color: ('primary', 200)] - The hover text color for button group items.
136
- /// @prop {Map} item-hover-background [color: ('gray', 50)] - The hover background color for button group items.
137
- /// @prop {Map} item-selected-background [color: ('gray', 200)] - The background color for a selected item in the button group.
138
- /// @prop {Map} item-selected-hover-background [color: ('gray', 200)] - The background color for a selected item in hover or focus state in the button group.
139
- /// @prop {Map} item-selected-text-color [color: ('primary', 200)]- The text color for a selected item in the button group.
140
- /// @prop {Color} disabled-background-color [color: ('gray', 50)] - The background color for a disabled item in the button group.
151
+ /// @prop {Map} item-background [contrast-color: ('gray', 900)] - The background color for button group items.
152
+ /// @prop {Map} item-border-color [color: ('gray', 600)] - The border color between button group items.`
153
+ /// @prop {Map} item-hover-text-color [color: ('gray', 900)] - The hover text color for button group items.
154
+ /// @prop {Map} item-hover-background [color: ('gray', 200)] - The hover background color for button group items.
155
+ /// @prop {Map} item-focused-background [color: ('gray', 300)] - The focused background color for button group items.
156
+ /// @prop {Map} item-selected-background [color: ('gray', 300)] - The background color for a selected item in the button group.
157
+ /// @prop {Map} item-selected-hover-background [color: ('gray', 400)] - The background color for a selected item in hover or focus state in the button group.
158
+ /// @prop {Map} item-selected-text-color [color: ('gray', 900)]- The text color for a selected item in the button group.
159
+ /// @prop {Map} item-selected-border-color [color: ('gray', 600)] - The border color for a selected item from the button group.
160
+ /// @prop {Map} item-focused-border-color [color: ('gray', 700)] - The focused border color for an item from the button group.
161
+ /// @prop {Map} disabled-background-color [color: ('gray', 50)] - The background color for a disabled item in the button group.
162
+ /// @prop {Map} disabled-text-color [color: ('gray', 500)]- The text/icon color for a disabled item in the button group.
163
+ /// @prop {Map} item-disabled-border [color: ('gray', 600)] - The border color for a disabled item in the button group.
141
164
  /// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the button group shadow.
142
165
  /// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for button-group component.
143
166
  /// @requires {Map} $light-button-group
@@ -146,6 +169,27 @@ $fluent-button-group: extend(
146
169
  $light-button-group,
147
170
  $fluent-elevation-button-group,
148
171
  (
172
+ item-background: (
173
+ contrast-color: (
174
+ 'gray',
175
+ 900,
176
+ ),
177
+ ),
178
+
179
+ item-border-color: (
180
+ color: (
181
+ 'gray',
182
+ 600,
183
+ ),
184
+ ),
185
+
186
+ item-focused-border-color: (
187
+ color: (
188
+ 'gray',
189
+ 700,
190
+ ),
191
+ ),
192
+
149
193
  item-text-color: (
150
194
  color: (
151
195
  'gray',
@@ -155,36 +199,50 @@ $fluent-button-group: extend(
155
199
 
156
200
  item-hover-text-color: (
157
201
  color: (
158
- 'primary',
159
- 200,
202
+ 'gray',
203
+ 900,
160
204
  ),
161
205
  ),
162
206
 
163
207
  item-hover-background: (
164
208
  color: (
165
209
  'gray',
166
- 50,
210
+ 200,
211
+ ),
212
+ ),
213
+
214
+ item-focused-background: (
215
+ color: (
216
+ 'gray',
217
+ 300,
167
218
  ),
168
219
  ),
169
220
 
170
221
  item-selected-background: (
171
222
  color: (
172
223
  'gray',
173
- 200,
224
+ 300,
174
225
  ),
175
226
  ),
176
227
 
177
228
  item-selected-hover-background: (
178
229
  color: (
179
230
  'gray',
180
- 200,
231
+ 400,
181
232
  ),
182
233
  ),
183
234
 
184
235
  item-selected-text-color: (
185
236
  color: (
186
- 'primary',
187
- 200,
237
+ 'gray',
238
+ 900,
239
+ ),
240
+ ),
241
+
242
+ item-selected-border-color: (
243
+ color: (
244
+ 'gray',
245
+ 600,
188
246
  ),
189
247
  ),
190
248
 
@@ -195,6 +253,20 @@ $fluent-button-group: extend(
195
253
  ),
196
254
  ),
197
255
 
256
+ disabled-text-color: (
257
+ color: (
258
+ 'gray',
259
+ 500,
260
+ ),
261
+ ),
262
+
263
+ item-disabled-border: (
264
+ color: (
265
+ 'gray',
266
+ 600,
267
+ ),
268
+ ),
269
+
198
270
  border-radius: (
199
271
  border-radius: (
200
272
  rem(2px),