1212/// Generates a base light tabs schema.
1313/// @type {Map}
1414/// @prop {Map} item-text-color [color: ('gray', 700)] - The color used for the tab text color.
15- /// @prop {Color } item-background [color: ('surface')] - The background color used for the tabs header.
15+ /// @prop {Map } item-background [color: ('surface')] - The background color used for the tabs header.
1616/// @prop {Map} item-hover-background [color: ('gray', 200)] - The background used for the tabs on hover.
1717/// @prop {Map} item-hover-color [color: ('gray', 900)] - The text color used for the tabs on hover.
1818/// @prop {Map} item-icon-color [color: ('gray', 700)] - The color used for the tab icon.
@@ -175,50 +175,64 @@ $material-tabs: extend(
175175
176176/// Generates a fluent tabs schema.
177177/// @type {Map}
178- /// @prop {Map} item-text-color [color: ('gray', 900)] - The color used for the tab text color.
179- /// @prop {Map} item-disabled-color [color: ('gray', 400)] - The color used for the disabled tabs text.
180- /// @prop {Map} item-disabled-icon-color [color: ('gray', 400)] - The color used for the disabled tab icon.
178+ /// @prop {Map} item-text-color [color: ('gray', 800)] - The color used for the tab text color.
181179/// @prop {Map} button-color [color: ('gray', 500)] - The color used for the button icon/text color.
182180/// @prop {Map} button-hover-color [color: ('gray', 600)] - The color used for the button icon/text color on hover.
183181/// @prop {Map} button-disabled-color [color: ('gray', 400)] - The color used for the disabled button icon/text.
182+ /// @prop {Map} item-active-color [color: ('gray', 800)] - The color used for the active tabs text.
183+ /// @prop {Map} item-active-icon-color [color: ('gray', 800)] - The color used for the active tab icon.
184+ /// @prop {Map} item-hover-icon-color [color: ('gray', 900)] - The color used for the tab icon on hover.
185+ /// @prop {Map} item-icon-color [color: ('gray', 800)] - The color used for the tab icon.
184186/// @requires {Map} $light-tabs
185187$fluent-tabs : extend (
186188 $light-tabs ,
187189 (
188190 item- text- color: (
189191 color : (
190192 ' gray' ,
191- 900 ,
193+ 800 ,
192194 ),
193195 ),
194- item - disabled - color: (
196+ button - color: (
195197 color : (
196198 ' gray' ,
197- 400 ,
199+ 500 ,
198200 ),
199201 ),
200- item- disabled- icon- color: (
202+ button- hover- color: (
203+ color : (
204+ ' gray' ,
205+ 600 ,
206+ ),
207+ ),
208+ button- disabled- color: (
201209 color : (
202210 ' gray' ,
203211 400 ,
204212 ),
205213 ),
206- button - color: (
214+ item - active - color: (
207215 color : (
208216 ' gray' ,
209- 500 ,
217+ 800 ,
210218 ),
211219 ),
212- button - hover - color: (
220+ item - active - icon - color: (
213221 color : (
214222 ' gray' ,
215- 600 ,
223+ 800 ,
216224 ),
217225 ),
218- button - disabled - color: (
226+ item - hover - icon - color: (
219227 color : (
220228 ' gray' ,
221- 400 ,
229+ 900 ,
230+ ),
231+ ),
232+ item- icon- color: (
233+ color : (
234+ ' gray' ,
235+ 800 ,
222236 ),
223237 ),
224238 )
@@ -234,8 +248,8 @@ $fluent-tabs: extend(
234248/// @prop {map} item-active-icon-color [color: ('gray', 800)] - The color used for the active tabs icon.
235249/// @prop {Map} item-disabled-color [color: ('primary', 500, .5)] - The color used for the disabled tabs text.
236250/// @prop {Map} item-disabled-icon-color [color: ('primary', 500, .5)] - The color used for the disabled tab icon.
237- /// @prop {Map} button-color [color: ('gray ', 500)] - The color used for the button icon/text color.
238- /// @prop {Map} button-hover-color [color: ('gray ', 600 )] - The color used for the button icon/text color on hover.
251+ /// @prop {Map} button-color [color: ('primary ', 500)] - The color used for the button icon/text color.
252+ /// @prop {Map} button-hover-color [color: ('primary ', 500 )] - The color used for the button icon/text color on hover.
239253/// @prop {Map} button-disabled-color [color: ('primary', 500, .5)] - The color used for the disabled button icon/text.
240254/// @prop {map} item-hover-background [color: ('surface')] - The background used for the tabs on hover.
241255/// @prop {map} item-active-background [color: ('surface')] - The color used for the active/focused tab background.
@@ -248,14 +262,14 @@ $bootstrap-tabs: extend(
248262 (
249263 button- color: (
250264 color : (
251- ' gray ' ,
265+ ' primary ' ,
252266 500 ,
253267 ),
254268 ),
255269 button- hover- color: (
256270 color : (
257- ' gray ' ,
258- 600 ,
271+ ' primary ' ,
272+ 500 ,
259273 ),
260274 ),
261275 item- hover- background: (
@@ -429,7 +443,12 @@ $indigo-tabs: extend(
429443 0.15 ,
430444 ),
431445 ),
432- button- background: transparent ,
446+ button- background: (
447+ contrast- color: (
448+ ' gray' ,
449+ 900 ,
450+ ),
451+ ),
433452 button- hover- background: (
434453 color : (
435454 ' gray' ,
0 commit comments