igniteui-theming 6.0.0-beta.15 → 6.0.0-beta.17

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": "6.0.0-beta.15",
3
+ "version": "6.0.0-beta.17",
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": {
@@ -537,11 +537,11 @@ $dark-bootstrap-calendar: extend(
537
537
  /// @prop {Map} date-special-foreground [color: ('primary', 50)] - The foreground color of a special date.
538
538
  /// @prop {Map} date-special-background [color: ('primary', 600, .4)] - The background color of a special date.
539
539
  /// @prop {Map} date-special-hover-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
540
- /// @prop {Map} date-special-hover-background [color: ('primary', 600, .7)] - The background color of a special date.
540
+ /// @prop {Map} date-special-hover-background [color: ('primary', 600, .4)] - The background color of a special date.
541
541
  /// @prop {Map} date-special-focus-foreground [contrast-color: ('primary', 600)] - The foreground color of a special date.
542
- /// @prop {Map} date-special-focus-background [color: ('primary', 600, .7)] - The background color of a special date.
543
- /// @prop {Map} date-special-range-hover-background [color: ('primary', 600, .7)] - The :hover background color of a special date in range selection.
544
- /// @prop {Map} date-special-range-focus-background [color: ('primary', 600, .7)] - The :focus background color of a special date in range selection.
542
+ /// @prop {Map} date-special-focus-background [color: ('primary', 600, .4)] - The background color of a special date.
543
+ /// @prop {Map} date-special-range-hover-background [color: ('primary', 600, .4)] - The :hover background color of a special date in range selection.
544
+ /// @prop {Map} date-special-range-focus-background [color: ('primary', 600, .4)] - The :focus background color of a special date in range selection.
545
545
  /// @prop {Map} navigation-hover-color [color: ('primary', 300)] - The :hover color of the icon button responsible for month navigation.
546
546
  /// @prop {Map} navigation-focus-color [color: ('primary', 300)] - The :focus color of the icon button responsible for month navigation.
547
547
  /// @prop {Мап} actions-divider-color [color: ('gray', 100)] - The border color used for the date-picker actions divider.
@@ -556,6 +556,10 @@ $dark-bootstrap-calendar: extend(
556
556
  /// @prop {Map} selected-current-hover-outline-color [contrast-color: ('gray', 50, .6)] - The :hover outline color of the selected current year/month in year/month views.
557
557
  /// @prop {Map} selected-current-focus-outline-color [contrast-color: ('gray', 50, .6)] - The :focus outline color of the selected current year/month in year/month views.
558
558
  /// @prop {Map} date-current-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the current date.
559
+ /// @prop {Map} date-selected-range-hover-background [contrast-color: ('gray', 50, .1)] - The :hover background color of the selected range.
560
+ /// @prop {Map} date-selected-range-focus-background [contrast-color: ('gray', 50, .1)] - The :focus background color of the selected range.
561
+ /// @prop {Map} date-selected-range-hover-foreground [contrast-color: ('gray', 50)] - The :hover foreground color of the selected range.
562
+ /// @prop {Map} date-selected-range-focus-foreground [contrast-color: ('gray', 50)] - The :focus foreground color of the selected range.
559
563
  /// @requires $indigo-calendar
560
564
  $dark-indigo-calendar: extend(
561
565
  $indigo-calendar,
@@ -697,7 +701,7 @@ $dark-indigo-calendar: extend(
697
701
  color: (
698
702
  'primary',
699
703
  600,
700
- 0.7,
704
+ 0.4,
701
705
  ),
702
706
  ),
703
707
  date-special-focus-foreground: (
@@ -710,7 +714,7 @@ $dark-indigo-calendar: extend(
710
714
  color: (
711
715
  'primary',
712
716
  600,
713
- 0.7,
717
+ 0.4,
714
718
  ),
715
719
  ),
716
720
  date-special-range-foreground: (
@@ -730,14 +734,14 @@ $dark-indigo-calendar: extend(
730
734
  color: (
731
735
  'primary',
732
736
  600,
733
- 0.7,
737
+ 0.4,
734
738
  ),
735
739
  ),
736
740
  date-special-range-focus-background: (
737
741
  color: (
738
742
  'primary',
739
743
  600,
740
- 0.7,
744
+ 0.4,
741
745
  ),
742
746
  ),
743
747
  navigation-hover-color: (
@@ -837,5 +841,31 @@ $dark-indigo-calendar: extend(
837
841
  0.38,
838
842
  ),
839
843
  ),
844
+ date-selected-range-hover-foreground: (
845
+ contrast-color: (
846
+ 'secondary',
847
+ 900,
848
+ ),
849
+ ),
850
+ date-selected-range-focus-foreground: (
851
+ contrast-color: (
852
+ 'secondary',
853
+ 900,
854
+ ),
855
+ ),
856
+ date-selected-range-hover-background: (
857
+ contrast-color: (
858
+ 'gray',
859
+ 50,
860
+ 0.1,
861
+ ),
862
+ ),
863
+ date-selected-range-focus-background: (
864
+ contrast-color: (
865
+ 'gray',
866
+ 50,
867
+ 0.1,
868
+ ),
869
+ ),
840
870
  )
841
871
  );
@@ -22,7 +22,6 @@ $dark-material-slider: $material-slider;
22
22
  /// @prop {Map} track-color [color: ('gray', 600)] - The color of the track.
23
23
  /// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
24
24
  /// @prop {Map} thumb-border-color [color: ('gray', 400)] - The thumb border color.
25
- /// @prop {Map} thumb-border-hover-color [color: ('gray', 400)] - The thumb border color.
26
25
  /// @prop {Map} thumb-focus-color [color: ('primary', 100)] - The focus outline color of the thumb.
27
26
  /// @prop {Map} thumb-disabled-border-color [color: ('gray', 200)] - The thumb border color when it's disabled.
28
27
  /// @prop {Map} disabled-base-track-color [color: ('gray', 100)] - The base background color of the track when is disabled.
@@ -61,12 +60,6 @@ $dark-fluent-slider: extend(
61
60
  400,
62
61
  ),
63
62
  ),
64
- thumb-border-hover-color: (
65
- color: (
66
- 'gray',
67
- 400,
68
- ),
69
- ),
70
63
  thumb-focus-color: (
71
64
  color: (
72
65
  'primary',
@@ -121,90 +114,22 @@ $dark-bootstrap-slider: extend(
121
114
 
122
115
  /// Generates a dark indigo slider schema.
123
116
  /// @type {Map}
124
- /// @prop {Map} track-step-color [contrast-color: ('gray', 50, 0.3)] - The color of the track steps.
125
- /// @prop {Map} base-track-color [contrast-color: ('gray', 50, 0.3)] - The base background color of the track.
126
- /// @prop {Map} base-track-hover-color [contrast-color: ('gray', 50, 0.4)] - The base background color of the track on hover.
127
- /// @prop {Map} track-color [color: ('primary', 400)] - The color of the track.
128
- /// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
129
- /// @prop {Map} thumb-color [color: 'surface'] - The color of the thumb.
130
- /// @prop {Map} thumb-border-color [color: ('primary', 400)] - The thumb border color.
131
- /// @prop {Map} thumb-border-hover-color [color: ('primary', 300)] - The thumb border color when hovered.
132
- /// @prop {Map} disabled-thumb-color [color: 'surface'] - The thumb color when its disabled.
133
- /// @prop {Map} thumb-disabled-border-color [color: ('primary', 800)] - The thumb border color when it's disabled.
134
- /// @prop {Map} disabled-base-track-color [contrast-color: ('gray', 50, 0.15)] - The base background color of the track when is disabled.
135
- /// @prop {Map} disabled-fill-track-color [color: ('primary', 800)] - The background color of the fill track when is disabled.
117
+ /// @prop {Map} base-track-color [color: ('gray', 200)] - The base background color of the track.
118
+ /// @prop {Map} base-track-hover-color [color: ('gray', 400)] - The base background color of the track on hover.
136
119
  /// @requires $indigo-slider
137
120
  $dark-indigo-slider: extend(
138
121
  $indigo-slider,
139
122
  (
140
- track-step-color: (
141
- contrast-color: (
142
- 'gray',
143
- 50,
144
- 0.3,
145
- ),
146
- ),
147
123
  base-track-color: (
148
- contrast-color: (
124
+ color: (
149
125
  'gray',
150
- 50,
151
- 0.3,
126
+ 200,
152
127
  ),
153
128
  ),
154
129
  base-track-hover-color: (
155
- contrast-color: (
156
- 'gray',
157
- 50,
158
- 0.4,
159
- ),
160
- ),
161
- track-color: (
162
- color: (
163
- 'primary',
164
- 400,
165
- ),
166
- ),
167
- track-hover-color: (
168
- color: (
169
- 'primary',
170
- 300,
171
- ),
172
- ),
173
- thumb-color: (
174
- color: 'surface',
175
- ),
176
- thumb-border-color: (
177
130
  color: (
178
- 'primary',
179
- 400,
180
- ),
181
- ),
182
- thumb-border-hover-color: (
183
- color: (
184
- 'primary',
185
- 300,
186
- ),
187
- ),
188
- disabled-thumb-color: (
189
- color: 'surface',
190
- ),
191
- thumb-disabled-border-color: (
192
- color: (
193
- 'primary',
194
- 800,
195
- ),
196
- ),
197
- disabled-base-track-color: (
198
- contrast-color: (
199
131
  'gray',
200
- 50,
201
- 0.15,
202
- ),
203
- ),
204
- disabled-fill-track-color: (
205
- color: (
206
- 'primary',
207
- 800,
132
+ 400,
208
133
  ),
209
134
  ),
210
135
  )
@@ -51,39 +51,18 @@ $dark-bootstrap-splitter: $bootstrap-splitter;
51
51
 
52
52
  /// Generates a dark indigo splitter schema.
53
53
  /// @type {Map}
54
- /// @prop {Map} bar-color [color: ('gray', 200)] - The background color of the bar.
55
- /// @prop {Map} focus-color [color: ('gray', 300)] - The color used for focused splitter bar.
56
- /// @prop {Map} handle-color [color: ('gray', 600)] - The color for the bar drag handle.
57
- /// @prop {Map} expander-color [color: ('gray', 600)] - The color for the bar drag handle.
54
+ /// @prop {Map} handle-color [color: 'surface'] - The color for the bar drag handle.
55
+ /// @prop {Map} expander-color [color: 'surface'] - The color for the bar drag handle.
58
56
  /// @requires $indigo-splitter
59
57
  $dark-indigo-splitter: extend(
60
58
  $indigo-splitter,
61
59
  (
62
- bar-color: (
63
- color: (
64
- 'gray',
65
- 200,
66
- ),
67
- ),
68
-
69
- focus-color: (
70
- color: (
71
- 'gray',
72
- 300,
73
- ),
74
- ),
75
60
  handle-color: (
76
- color: (
77
- 'gray',
78
- 600,
79
- ),
61
+ color: 'surface',
80
62
  ),
81
63
 
82
64
  expander-color: (
83
- color: (
84
- 'gray',
85
- 600,
86
- ),
65
+ color: 'surface',
87
66
  ),
88
67
  )
89
68
  );
@@ -60,7 +60,7 @@
60
60
  /// @prop {Color} date-selected-focus-border-color [transparent] - The :focus border color of the selected date.
61
61
  /// @prop {Color} date-range-border-color [transparent] - The border color of range selection.
62
62
  /// @prop {Map} date-range-preview-border-color [color: ('gray', 300)] - The border color of the range selection in preview state(visible before selecting the end of the range).
63
- /// @prop {Map} date-disabled-foreground [color: ('gray', 900, .2)] - The foreground color of disabled dates.
63
+ /// @prop {Map} date-disabled-foreground [color: ('gray', 500, .5)] - The foreground color of disabled dates.
64
64
  /// @prop {Map} date-disabled-range-foreground [color: ('gray', 800, .38)] - The foreground color of disabled dates in range selection.
65
65
  /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
66
66
  /// @prop {List} date-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the date.
@@ -343,14 +343,14 @@ $light-calendar: (
343
343
  date-disabled-foreground: (
344
344
  color: (
345
345
  'gray',
346
- 900,
347
- 0.2,
346
+ 500,
347
+ 0.5,
348
348
  ),
349
349
  ),
350
350
  date-disabled-range-foreground: (
351
351
  color: (
352
352
  'gray',
353
- 800,
353
+ 900,
354
354
  0.38,
355
355
  ),
356
356
  ),
@@ -2325,6 +2325,7 @@ $bootstrap-calendar: extend(
2325
2325
  /// @prop {Map} date-selected-current-hover-border-color [contrast-color: ('primary', 900, .6)] - The :hover border color of the selected current date.
2326
2326
  /// @prop {Map} date-selected-current-focus-border-color [contrast-color: ('primary', 900,. 6)] - The :focus border color of the selected current date.
2327
2327
  /// @prop {Map} date-selected-range-foreground [color: ('gray', 800)] - The foreground color of the selected range.
2328
+ /// @prop {Map} date-selected-current-range-foreground [color: ('gray', 800)] - The foreground color of the current date in the selected range.
2328
2329
  /// @prop {Map} date-selected-range-background [color: ('primary', 300, .2)] - The background color of the selected range.
2329
2330
  /// @prop {Map} date-selected-range-hover-background [color: ('secondary', 100)] - The :hover background color of the selected range.
2330
2331
  /// @prop {Map} date-selected-range-focus-background [color: ('secondary', 100)] - The :focus background color of the selected range.
@@ -2702,6 +2703,12 @@ $indigo-calendar: extend(
2702
2703
  0.6,
2703
2704
  ),
2704
2705
  ),
2706
+ date-selected-current-range-foreground: (
2707
+ color: (
2708
+ 'gray',
2709
+ 800,
2710
+ ),
2711
+ ),
2705
2712
  date-selected-range-foreground: (
2706
2713
  color: (
2707
2714
  'gray',
@@ -14,6 +14,9 @@
14
14
  /// @prop {Map} track-color [color: ('secondary', 500)] - The color of the track.
15
15
  /// @prop {Color} track-step-color [white] - The color of the track steps.
16
16
  /// @prop {Number} track-step-size [rem(3px)] - The size of the track steps.
17
+ /// @prop {Map} thumb-color [color: ('secondary', 500)] - The color of the thumb.
18
+ /// @prop {Map} thumb-border-color [color: ('secondary', 500)] - The thumb border color.
19
+ /// @prop {Map} thumb-border-focus-color [color: ('secondary', 500)] - The thumb border color when focused.
17
20
  /// @prop {Map} thumb-disabled-border-color [color: ('gray', 400)] - The thumb border color when it's disabled.
18
21
  /// @prop {Map} label-background-color [color: ('gray', 700)] - The background color of the bubble label.
19
22
  /// @prop {Map} label-text-color [contrast-color: ('gray', 700)] - The text color of the bubble label.
@@ -28,6 +31,24 @@ $light-slider: (
28
31
  ),
29
32
  track-step-color: white,
30
33
  track-step-size: rem(3px),
34
+ thumb-color: (
35
+ color: (
36
+ 'secondary',
37
+ 500,
38
+ ),
39
+ ),
40
+ thumb-border-color: (
41
+ color: (
42
+ 'secondary',
43
+ 500,
44
+ ),
45
+ ),
46
+ thumb-border-focus-color: (
47
+ color: (
48
+ 'secondary',
49
+ 500,
50
+ ),
51
+ ),
31
52
  thumb-disabled-border-color: (
32
53
  color: (
33
54
  'gray',
@@ -62,10 +83,6 @@ $light-slider: (
62
83
 
63
84
  /// Generates a material slider schema.
64
85
  /// @type {Map}
65
- /// @prop {Map} thumb-color [color: ('secondary', 500)] - The color of the thumb.
66
- /// @prop {Map} thumb-border-color [color: ('secondary', 500)] - The thumb border color.
67
- /// @prop {Map} thumb-border-hover-color [color: ('secondary', 500)] - The thumb border color when hovered.
68
- /// @prop {Map} thumb-border-focus-color [color: ('secondary', 500)] - The thumb border color when focused.
69
86
  /// @prop {Color} thumb-focus-color [transparent] - The focus outline color of the thumb.
70
87
  /// @prop {Map} track-step-color [color: ('secondary', 200)] - The color of the track steps.
71
88
  /// @prop {Map} track-hover-color [color: ('secondary', 400)] - The color of the track on hover.
@@ -78,30 +95,6 @@ $light-slider: (
78
95
  $material-slider: extend(
79
96
  $light-slider,
80
97
  (
81
- thumb-color: (
82
- color: (
83
- 'secondary',
84
- 500,
85
- ),
86
- ),
87
- thumb-border-color: (
88
- color: (
89
- 'secondary',
90
- 500,
91
- ),
92
- ),
93
- thumb-border-hover-color: (
94
- color: (
95
- 'secondary',
96
- 500,
97
- ),
98
- ),
99
- thumb-border-focus-color: (
100
- color: (
101
- 'secondary',
102
- 500,
103
- ),
104
- ),
105
98
  track-step-color: (
106
99
  color: (
107
100
  'secondary',
@@ -156,7 +149,6 @@ $material-slider: extend(
156
149
  /// @prop {Map} track-hover-color [color: ('primary', 500)] - The color of the track on hover.
157
150
  /// @prop {Map} thumb-color [color: ('surface', 500)] - The color of the thumb.
158
151
  /// @prop {Map} thumb-border-color [color: ('gray', 700)] - The thumb border color.
159
- /// @prop {Map} thumb-border-hover-color [color: ('gray', 700)] - The thumb border color when hovered.
160
152
  /// @prop {Map} thumb-border-focus-color [color: ('gray', 700)] - The thumb border color when focused.
161
153
  /// @prop {Map} thumb-focus-color [color: ('primary', 700)] - The focus outline color of the thumb.
162
154
  /// @prop {Map} disabled-thumb-color [color: ('surface', 500)] - The thumb color when its disabled.
@@ -193,12 +185,6 @@ $fluent-slider: extend(
193
185
  700,
194
186
  ),
195
187
  ),
196
- thumb-border-hover-color: (
197
- color: (
198
- 'gray',
199
- 700,
200
- ),
201
- ),
202
188
  thumb-border-focus-color: (
203
189
  color: (
204
190
  'gray',
@@ -256,7 +242,6 @@ $fluent-slider: extend(
256
242
  /// @prop {Map} base-track-hover-color [color: ('secondary', 500, .24)] - The base background color of the track on hover.
257
243
  /// @prop {Map} thumb-color [color: ('primary', 500)] - The color of the thumb.
258
244
  /// @prop {Map} thumb-border-color [color: ('primary', 500)] - The thumb border color.
259
- /// @prop {Map} thumb-border-hover-color [color: ('primary', 500)] - The thumb border color when hovered.
260
245
  /// @prop {Map} thumb-border-focus-color [color: ('surface', 500)] - The thumb border color when focused.
261
246
  /// @prop {Map} thumb-focus-color [color: ('primary', 200)] - The focus outline color of the thumb.
262
247
  /// @prop {Map} disabled-thumb-color [color: ('gray', 400)] - The thumb color when its disabled.
@@ -290,12 +275,6 @@ $bootstrap-slider: extend(
290
275
  500,
291
276
  ),
292
277
  ),
293
- thumb-border-hover-color: (
294
- color: (
295
- 'primary',
296
- 500,
297
- ),
298
- ),
299
278
  thumb-border-focus-color: (
300
279
  color: (
301
280
  'surface',
@@ -319,139 +298,57 @@ $bootstrap-slider: extend(
319
298
 
320
299
  /// Generates an indigo slider schema.
321
300
  /// @type {Map}
322
- /// @prop {Map} track-step-color [color: ('gray', 900, 0.4)] - The color of the track steps.
323
- /// @prop {Number} track-step-size [rem(2px)] - The size of the track steps.
301
+ /// @prop {Map} track-hover-color [color: ('primary', 400)] - The color of the track on hover.
324
302
  /// @prop {Map} base-track-color [color: ('gray', 400)] - The base background color of the track.
325
303
  /// @prop {Map} base-track-hover-color [color: ('gray', 500)] - The base background color of the track on hover.
326
- /// @prop {Map} track-color [color: ('primary', 500)] - The color of the track.
327
- /// @prop {Map} track-hover-color [color: ('primary', 400)] - The color of the track on hover.
328
- /// @prop {Map} thumb-color [color: ('gray', 50)] - The color of the thumb.
329
- /// @prop {Map} thumb-border-color [color: ('primary', 500)] - The thumb border color.
330
- /// @prop {Map} thumb-border-hover-color [color: ('primary', 400)] - The thumb border color when hovered.
331
- /// @prop {Map} thumb-border-focus-color [color: ('primary', 500)] - The thumb border color when focused.
332
- /// @prop {Map} thumb-focus-color [color: ('primary', 400, 0.5)] - The focus outline color of the thumb.
333
- /// @prop {Map} tick-color [color: ('gray', 300)] - The background-color of the tick.
334
- /// @prop {Map} tick-label-color [color: ('gray', 600)] - The color of the tick label.
335
- /// @prop {Map} label-background-color [color: ('gray', 600)] - The background color of the bubble label.
336
- /// @prop {Map} label-text-color [contrast-color: ('gray', 600)] - The text color of the bubble label.
337
- /// @prop {Map} disabled-thumb-color [color: ('gray', 50)] - The thumb color when its disabled.
338
- /// @prop {Map} thumb-disabled-border-color [color: ('primary', 50)] - The thumb border color when it's disabled.
339
- /// @prop {Map} disabled-base-track-color [color: ('gray', 900, 0.15)] - The base background color of the track when is disabled.
340
- /// @prop {Map} disabled-fill-track-color [color: ('primary', 50)] - The background color of the fill track when is disabled.
304
+ /// @prop {Map} thumb-focus-color [color: ('primary', 200)] - The focus outline color of the thumb.
305
+ /// @prop {Map} disabled-thumb-color [color: ('gray', 300)] - The thumb color when its disabled.
306
+ /// @prop {Map} disabled-base-track-color [color: ('gray', 300)] - The base background color of the track when is disabled.
307
+ /// @prop {Map} disabled-fill-track-color [color: ('gray', 300)] - The background color of the fill track when is disabled.
341
308
  /// @requires {Map} $light-slider
342
309
  $indigo-slider: extend(
343
310
  $light-slider,
344
311
  (
345
- track-step-color: (
346
- color: (
347
- 'gray',
348
- 900,
349
- 0.4,
350
- ),
351
- ),
352
- track-step-size: rem(2px),
353
- base-track-color: (
354
- color: (
355
- 'gray',
356
- 400,
357
- ),
358
- ),
359
- base-track-hover-color: (
360
- color: (
361
- 'gray',
362
- 500,
363
- ),
364
- ),
365
- track-color: (
366
- color: (
367
- 'primary',
368
- 500,
369
- ),
370
- ),
371
312
  track-hover-color: (
372
313
  color: (
373
314
  'primary',
374
315
  400,
375
316
  ),
376
317
  ),
377
- thumb-color: (
318
+ base-track-color: (
378
319
  color: (
379
320
  'gray',
380
- 50,
381
- ),
382
- ),
383
- thumb-border-color: (
384
- color: (
385
- 'primary',
386
- 500,
387
- ),
388
- ),
389
- thumb-border-hover-color: (
390
- color: (
391
- 'primary',
392
321
  400,
393
322
  ),
394
323
  ),
395
- thumb-border-focus-color: (
324
+ base-track-hover-color: (
396
325
  color: (
397
- 'primary',
326
+ 'gray',
398
327
  500,
399
328
  ),
400
329
  ),
401
330
  thumb-focus-color: (
402
331
  color: (
403
332
  'primary',
404
- 400,
405
- 0.5,
406
- ),
407
- ),
408
- tick-color: (
409
- color: (
410
- 'gray',
411
- 300,
412
- ),
413
- ),
414
- tick-label-color: (
415
- color: (
416
- 'gray',
417
- 600,
418
- ),
419
- ),
420
- label-background-color: (
421
- color: (
422
- 'gray',
423
- 600,
424
- ),
425
- ),
426
- label-text-color: (
427
- contrast-color: (
428
- 'gray',
429
- 600,
333
+ 200,
430
334
  ),
431
335
  ),
432
336
  disabled-thumb-color: (
433
337
  color: (
434
338
  'gray',
435
- 50,
436
- ),
437
- ),
438
- thumb-disabled-border-color: (
439
- color: (
440
- 'primary',
441
- 50,
339
+ 300,
442
340
  ),
443
341
  ),
444
342
  disabled-base-track-color: (
445
343
  color: (
446
344
  'gray',
447
- 900,
448
- 0.15,
345
+ 300,
449
346
  ),
450
347
  ),
451
348
  disabled-fill-track-color: (
452
349
  color: (
453
- 'primary',
454
- 50,
350
+ 'gray',
351
+ 300,
455
352
  ),
456
353
  ),
457
354
  )
@@ -73,9 +73,9 @@ $bootstrap-splitter: $light-splitter;
73
73
  /// Generates an indigo splitter schema.
74
74
  /// @type {Map}
75
75
  /// @prop {Map} bar-color [color: ('gray', 400)] - The background color of the bar.
76
- /// @prop {Map} focus-color [color: ('gray', 500)] - The color used for focused splitter bar.
77
- /// @prop {Map} handle-color [color: ('gray', 700)] - The color for the bar drag handle.
78
- /// @prop {Map} expander-color [color: ('gray', 700)] - The color for the bar drag handle.
76
+ /// @prop {Map} handle-color [color: ('surface')] - The color for the bar drag handle.
77
+ /// @prop {Map} expander-color [color: ('surface')] - The color for the bar drag handle.
78
+ /// @prop {Map} focus-color [color: ('primary', 500)] - The color used for focused splitter bar.
79
79
  /// @requires {Map} $light-splitter
80
80
  $indigo-splitter: extend(
81
81
  $light-splitter,
@@ -89,22 +89,20 @@ $indigo-splitter: extend(
89
89
 
90
90
  focus-color: (
91
91
  color: (
92
- 'gray',
92
+ 'primary',
93
93
  500,
94
94
  ),
95
95
  ),
96
96
 
97
97
  handle-color: (
98
98
  color: (
99
- 'gray',
100
- 700,
99
+ 'surface',
101
100
  ),
102
101
  ),
103
102
 
104
103
  expander-color: (
105
104
  color: (
106
- 'gray',
107
- 700,
105
+ 'surface',
108
106
  ),
109
107
  ),
110
108
  )