@qrsln/lootstrap 22.2.2-beta.0 → 22.3.1-beta.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 (71) hide show
  1. package/Readme.md +17 -6
  2. package/dist/css/lootstrap.css +10649 -9826
  3. package/dist/css/lootstrap.css.map +1 -1
  4. package/dist/css/lootstrap.min.css +3 -3
  5. package/package.json +5 -1
  6. package/scss/Abstracts/Functions/_color-customized.scss +62 -0
  7. package/scss/Abstracts/Functions/_color.scss +108 -65
  8. package/scss/Abstracts/Functions/_helpers.scss +2 -2
  9. package/scss/Abstracts/Functions/_shadow.scss +4 -4
  10. package/scss/Abstracts/Mixins/_color.scss +126 -136
  11. package/scss/Abstracts/Mixins/_theme.scss +163 -0
  12. package/scss/Abstracts/_dir-functions.scss +1 -0
  13. package/scss/Abstracts/_dir-mixins.scss +1 -4
  14. package/scss/Abstracts/_variables.scss +96 -35
  15. package/scss/Architecture/Components/TODO/_tables.scss +3 -3
  16. package/scss/Architecture/Components/_alert.scss +93 -19
  17. package/scss/Architecture/Components/_badge.scss +40 -0
  18. package/scss/Architecture/Components/_breadcrumb.scss +11 -10
  19. package/scss/Architecture/Components/_button-close.scss +11 -2
  20. package/scss/Architecture/Components/_buttons.scss +22 -21
  21. package/scss/Architecture/Components/_calendar.scss +67 -55
  22. package/scss/Architecture/Components/_card.scss +9 -9
  23. package/scss/Architecture/Components/_caret.scss +20 -20
  24. package/scss/Architecture/Components/_dialog.scss +10 -7
  25. package/scss/Architecture/Components/_list.scss +13 -13
  26. package/scss/Architecture/Components/_nav.scss +14 -12
  27. package/scss/Architecture/Components/_pagination.scss +16 -10
  28. package/scss/Architecture/Components/_progress.scss +6 -5
  29. package/scss/Architecture/Components/_rating.scss +15 -14
  30. package/scss/Architecture/Components/_scrollbar.scss +59 -29
  31. package/scss/Architecture/Components/_spinners.scss +0 -1
  32. package/scss/Architecture/Components/_timeline.scss +6 -5
  33. package/scss/Architecture/Components/_timer.scss +5 -4
  34. package/scss/Architecture/Components/_toasts.scss +72 -12
  35. package/scss/Architecture/Components/_tooltip.scss +135 -0
  36. package/scss/Architecture/Components/_tree-view.scss +13 -12
  37. package/scss/Architecture/Forms/_form-check.scss +82 -81
  38. package/scss/Architecture/Forms/_input-fields.scss +36 -37
  39. package/scss/Architecture/Forms/_selects.scss +3 -1
  40. package/scss/Architecture/{_anim.scss → Roots/_anim.scss} +17 -7
  41. package/scss/Architecture/Roots/_avatar.scss +296 -0
  42. package/scss/Architecture/Roots/_classified.scss +67 -0
  43. package/scss/Architecture/{_reboot.scss → Roots/_reboot.scss} +6 -9
  44. package/scss/Architecture/Roots/_root.scss +49 -0
  45. package/scss/Architecture/Roots/_shape.scss +92 -0
  46. package/scss/Architecture/Roots/_skeleton.scss +271 -0
  47. package/scss/Architecture/{Svg/_icons.scss → Roots/_svg.scss} +0 -0
  48. package/scss/Architecture/Utils/_border.scss +3 -1
  49. package/scss/Architecture/Utils/_color.scss +71 -88
  50. package/scss/Architecture/Utils/_filters.scss +4 -1
  51. package/scss/Architecture/Utils/_position.scss +43 -0
  52. package/scss/Architecture/Utils/_spacing.scss +7 -21
  53. package/scss/Architecture/Utils/_text.scss +42 -109
  54. package/scss/Architecture/Utils/_utilities.scss +55 -21
  55. package/scss/Architecture/__color-scheme.scss +80 -0
  56. package/scss/Architecture/__dir-components.scss +5 -7
  57. package/scss/Architecture/__dir-roots.scss +17 -0
  58. package/scss/Architecture/__dir-utils.scss +2 -1
  59. package/scss/Architecture/_theme.scss +2 -1
  60. package/scss/_header.scss +2 -2
  61. package/scss/lootstrap.scss +2 -5
  62. package/dist/css/test.css +0 -275
  63. package/dist/css/test.css.map +0 -1
  64. package/scss/Architecture/Components/TODO/_badge.scss +0 -7
  65. package/scss/Architecture/Components/TODO/_tooltip.scss +0 -7
  66. package/scss/Architecture/Components/_themed.scss +0 -45
  67. package/scss/Architecture/__dir-svg.scss +0 -7
  68. package/scss/Architecture/__theme-colors.scss +0 -51
  69. package/scss/Architecture/__theme-customized.scss +0 -51
  70. package/scss/Architecture/_root.scss +0 -45
  71. package/scss/test.scss +0 -37
@@ -3,7 +3,8 @@
3
3
  // TS: Theme Support
4
4
  // ===========================================================================
5
5
 
6
- @import "../_theme-colors";
6
+ $Customized: false;
7
+ @import "../_color-scheme";
7
8
 
8
9
  // https://demos.telerik.com/kendo-ui/treeview/index
9
10
 
@@ -20,12 +21,12 @@
20
21
  &.TreeViewItem-single {
21
22
  .TreeView-leaf {
22
23
  &:hover {
23
- color: $fg-Light;
24
- background-color: $bg-Light;
24
+ color: $Fg-lighter;
25
+ background-color: $Bg-lighter;
25
26
 
26
27
  &.Active {
27
28
  .FaIcon {
28
- color: $bg-Active;
29
+ color: $Bg-accent;
29
30
  }
30
31
  }
31
32
  }
@@ -45,13 +46,13 @@
45
46
  &.Disabled {
46
47
  cursor: not-allowed;
47
48
 
48
- color: $fg-Muted;
49
- background-color: $bg-Light;
49
+ color: $Fg-muted;
50
+ background-color: $Bg-lighter;
50
51
  }
51
52
 
52
53
  .TreeView-toggle {
53
54
  margin: 4px 4px 4px -18px;
54
- color: $bg-Active;
55
+ color: $Bg-accent;
55
56
 
56
57
  svg {
57
58
  width: 14px !important;
@@ -79,19 +80,19 @@
79
80
  padding: 2px 6px;
80
81
 
81
82
  &.Active {
82
- color: $fg-Active;
83
- background-color: $bg-Active;
84
- border-color: $bg-Active;
83
+ color: $Fg-accent;
84
+ background-color: $Bg-accent;
85
+ border-color: $Bg-accent;
85
86
  border-radius: .25rem;
86
87
 
87
88
  .FaIcon {
88
- color: $fg-Active;
89
+ color: $Fg-accent;
89
90
  }
90
91
  }
91
92
 
92
93
  .FaIcon {
93
94
  margin-right: .25rem;
94
- color: $bg-Active;
95
+ color: $Bg-accent;
95
96
  }
96
97
  }
97
98
 
@@ -5,7 +5,8 @@
5
5
  */
6
6
  @use 'sass:math';
7
7
 
8
- @import "../_theme-colors";
8
+ $Customized: false;
9
+ @import "../_color-scheme";
9
10
 
10
11
  $checkbox-size: 1.25rem; //20px
11
12
 
@@ -114,7 +115,7 @@ $checkbox-size: 1.25rem; //20px
114
115
  height: $checkbox-size * 1.1;
115
116
  border-style: solid;
116
117
  border-width: 2px;
117
- border-color: transparent $bg-Active $bg-Active transparent;
118
+ border-color: transparent $Bg-accent $Bg-accent transparent;
118
119
  transform: rotate(40deg);
119
120
  transform-origin: 100% 100%;
120
121
  }
@@ -127,7 +128,7 @@ $checkbox-size: 1.25rem; //20px
127
128
  width: 10px;
128
129
  height: 22px;
129
130
  border: none;
130
- border-right: 2px solid $bg-Active;
131
+ border-right: 2px solid $Bg-accent;
131
132
  transform: rotate(90deg);
132
133
  transform-origin: 100% 100%;
133
134
  }
@@ -138,23 +139,23 @@ $checkbox-size: 1.25rem; //20px
138
139
  /* Disabled */
139
140
  &:disabled {
140
141
  + .Form-check-label {
141
- color: $fg-Muted;
142
+ color: $Fg-muted;
142
143
  cursor: default;
143
144
  }
144
145
 
145
146
  &:checked + .Form-check-label:before {
146
- border-color: transparent $fg-Muted $fg-Muted transparent;
147
+ border-color: transparent $Fg-muted $Fg-muted transparent;
147
148
  }
148
149
 
149
150
  &:not(:checked) + .Form-check-label:before {
150
151
  border: none;
151
152
  //margin-left: 2px;
152
153
  margin-top: 2px;
153
- background-color: $fg-Muted;
154
+ background-color: $Fg-muted;
154
155
  }
155
156
 
156
157
  &:indeterminate + .Form-check-label:before {
157
- border-right: 2px solid $fg-Muted;
158
+ border-right: 2px solid $Fg-muted;
158
159
  margin-left: 0;
159
160
  margin-top: 0;
160
161
  background-color: transparent;
@@ -177,8 +178,8 @@ $checkbox-size: 1.25rem; //20px
177
178
  }
178
179
 
179
180
  &:after {
180
- border-color: $bg-Active;
181
- background-color: $bg-Active;
181
+ border-color: $Bg-accent;
182
+ background-color: $Bg-accent;
182
183
  z-index: 0;
183
184
  transform: scale(1.02);
184
185
  }
@@ -202,22 +203,22 @@ $checkbox-size: 1.25rem; //20px
202
203
  /* Disabled */
203
204
  &:disabled {
204
205
  + .Form-check-label {
205
- color: $fg-Muted;
206
+ color: $Fg-muted;
206
207
  cursor: default;
207
208
 
208
209
  &:before {
209
210
  background-color: transparent;
210
- border-color: $fg-Muted;
211
+ border-color: $Fg-muted;
211
212
  }
212
213
  }
213
214
 
214
215
  &:not(:checked) + .Form-check-label:before {
215
- border-color: $fg-Muted;
216
+ border-color: $Fg-muted;
216
217
  }
217
218
 
218
219
  &:checked + .Form-check-label:after {
219
- background-color: $fg-Muted;
220
- border-color: $fg-Muted;
220
+ background-color: $Fg-muted;
221
+ border-color: $Fg-muted;
221
222
  }
222
223
 
223
224
  }
@@ -250,7 +251,7 @@ $checkbox-size: 1.25rem; //20px
250
251
  border-radius: 7px;
251
252
  width: 40px;
252
253
  height: 15px;
253
- background-color: $fg-Muted;
254
+ background-color: $Fg-muted;
254
255
  box-shadow: $Shadow-inner;
255
256
  transition: background-color 0.2s, opacity 0.2s;
256
257
  }
@@ -263,7 +264,7 @@ $checkbox-size: 1.25rem; //20px
263
264
  width: $checkbox-size;
264
265
  height: $checkbox-size;
265
266
  border: $Border;
266
- background-color: $bg-Surface;
267
+ background-color: $Bg-surface;
267
268
  box-shadow: $Shadow-inner;
268
269
  transition: background-color 0.2s, transform 0.2s;
269
270
  }
@@ -273,40 +274,40 @@ $checkbox-size: 1.25rem; //20px
273
274
  &:checked {
274
275
 
275
276
  + .Form-check-label:before {
276
- background-color: hsla($bg-Active-hsl, 0.6);
277
+ background-color: hsla($Bg-accent-hsl, 0.6);
277
278
  }
278
279
 
279
280
  + .Form-check-label:after {
280
- border-color: $bg-Active;
281
- background-color: $bg-Active;
281
+ border-color: $Bg-accent;
282
+ background-color: $Bg-accent;
282
283
  transform: translateX(24px);
283
284
  }
284
285
 
285
286
  &:active + .Form-check-label:before {
286
- background-color: $fg-Muted;
287
+ background-color: $Fg-muted;
287
288
  }
288
289
 
289
290
  &:disabled + .Form-check-label:before {
290
- background-color: hsla($bg-Active-hsl, 0.6);
291
+ background-color: hsla($Bg-accent-hsl, 0.6);
291
292
  }
292
293
  }
293
294
 
294
295
  /* Active */
295
296
  &:active {
296
297
  + .Form-check-label:before {
297
- background-color: hsla($bg-Active-hsl, 0.6);
298
+ background-color: hsla($Bg-accent-hsl, 0.6);
298
299
  }
299
300
  }
300
301
 
301
302
  /* Disabled */
302
303
  &:disabled {
303
304
  + .Form-check-label {
304
- color: $fg-Muted;
305
+ color: $Fg-muted;
305
306
  opacity: 0.38;
306
307
  cursor: default;
307
308
 
308
309
  &:before {
309
- background-color: $fg-Muted;
310
+ background-color: $Fg-muted;
310
311
  }
311
312
  }
312
313
  }
@@ -341,7 +342,7 @@ $checkbox-size: 1.25rem; //20px
341
342
 
342
343
  width: $checkbox-size * 2;
343
344
  height: $checkbox-size * 2;
344
- background-color: $fg-Muted;
345
+ background-color: $Fg-muted;
345
346
 
346
347
  border-radius: 50%;
347
348
  transform: scale(1);
@@ -416,15 +417,15 @@ $checkbox-size: 1.25rem; //20px
416
417
 
417
418
  /* Checked, Indeterminate */
418
419
  &:checked, &:indeterminate {
419
- background-color: $bg-Active;
420
+ background-color: $Bg-accent;
420
421
 
421
422
  + .Form-check-label:before {
422
- border-color: $bg-Active;
423
- background-color: $bg-Active;
423
+ border-color: $Bg-accent;
424
+ background-color: $Bg-accent;
424
425
  }
425
426
 
426
427
  + .Form-check-label:after {
427
- border-color: $fg-Active;
428
+ border-color: $Fg-accent;
428
429
  }
429
430
 
430
431
  &:disabled {
@@ -448,12 +449,12 @@ $checkbox-size: 1.25rem; //20px
448
449
  transition: transform 0s, opacity 0s;
449
450
 
450
451
  + .Form-check-label:before {
451
- border-color: $bg-Active;
452
+ border-color: $Bg-accent;
452
453
  }
453
454
 
454
455
  &:checked + .Form-check-label:before {
455
456
  border-color: transparent;
456
- background-color: hsla($bg-Active-hsl, 0.6);
457
+ background-color: hsla($Bg-accent-hsl, 0.6);
457
458
  }
458
459
  }
459
460
 
@@ -462,7 +463,7 @@ $checkbox-size: 1.25rem; //20px
462
463
  opacity: 0;
463
464
 
464
465
  + .Form-check-label {
465
- color: $fg-Muted;
466
+ color: $Fg-muted;
466
467
  cursor: initial;
467
468
 
468
469
  &:before {
@@ -492,7 +493,7 @@ $checkbox-size: 1.25rem; //20px
492
493
  border-radius: 50%;
493
494
  width: 10px;
494
495
  height: 10px;
495
- background-color: $bg-Active;
496
+ background-color: $Bg-accent;
496
497
  transform: translate(5px, 5px) scale(0);
497
498
  transition: transform 0.2s;
498
499
  }
@@ -501,10 +502,10 @@ $checkbox-size: 1.25rem; //20px
501
502
 
502
503
  /* Checked */
503
504
  &:checked {
504
- background-color: $bg-Active;
505
+ background-color: $Bg-accent;
505
506
 
506
507
  + .Form-check-label:before {
507
- border-color: $bg-Active;
508
+ border-color: $Bg-accent;
508
509
  }
509
510
 
510
511
  + .Form-check-label:after {
@@ -519,7 +520,7 @@ $checkbox-size: 1.25rem; //20px
519
520
  transition: transform 0s, opacity 0s;
520
521
 
521
522
  + .Form-check-label:before {
522
- background-color: $bg-Active;
523
+ background-color: $Bg-accent;
523
524
  }
524
525
  }
525
526
 
@@ -528,7 +529,7 @@ $checkbox-size: 1.25rem; //20px
528
529
  opacity: 0;
529
530
 
530
531
  + .Form-check-label {
531
- color: $fg-Muted;
532
+ color: $Fg-muted;
532
533
  cursor: initial;
533
534
 
534
535
  &:before {
@@ -548,7 +549,7 @@ $checkbox-size: 1.25rem; //20px
548
549
  &:before {
549
550
  width: $checkbox-size;
550
551
  height: $checkbox-size;
551
- border: 2px solid hsla($bg-Active-hsl, 0.6);
552
+ border: 2px solid hsla($Bg-accent-hsl, 0.6);
552
553
  //border: $Border;
553
554
  transition: border-color 0.2s, background-color 0.2s;
554
555
  }
@@ -569,7 +570,7 @@ $checkbox-size: 1.25rem; //20px
569
570
  border-radius: 7px;
570
571
  width: 36px;
571
572
  height: 14px;
572
- background-color: $fg-Muted;
573
+ background-color: $Fg-muted;
573
574
  box-shadow: $Shadow-inner;
574
575
  transition: background-color 0.2s, opacity 0.2s;
575
576
  }
@@ -582,7 +583,7 @@ $checkbox-size: 1.25rem; //20px
582
583
  width: $checkbox-size;
583
584
  height: $checkbox-size;
584
585
  border: $Border;
585
- background-color: $bg-Surface;
586
+ background-color: $Bg-surface;
586
587
  box-shadow: $Shadow-inner;
587
588
  transition: background-color 0.2s, transform 0.2s;
588
589
  }
@@ -591,24 +592,24 @@ $checkbox-size: 1.25rem; //20px
591
592
  /* Checked */
592
593
  &:checked {
593
594
  left: 6px;
594
- background-color: $bg-Active;
595
+ background-color: $Bg-accent;
595
596
 
596
597
  + .Form-check-label:before {
597
- background-color: hsla($bg-Active-hsl, 0.6);
598
+ background-color: hsla($Bg-accent-hsl, 0.6);
598
599
  }
599
600
 
600
601
  + .Form-check-label:after {
601
- border-color: $bg-Active;
602
- background-color: $bg-Active;
602
+ border-color: $Bg-accent;
603
+ background-color: $Bg-accent;
603
604
  transform: translateX(16px);
604
605
  }
605
606
 
606
607
  &:active + .Form-check-label:before {
607
- background-color: $fg-Muted;
608
+ background-color: $Fg-muted;
608
609
  }
609
610
 
610
611
  &:disabled + .Form-check-label:before {
611
- background-color: hsla($bg-Active-hsl, 0.6);
612
+ background-color: hsla($Bg-accent-hsl, 0.6);
612
613
  }
613
614
  }
614
615
 
@@ -619,7 +620,7 @@ $checkbox-size: 1.25rem; //20px
619
620
  transition: transform 0s, opacity 0s;
620
621
 
621
622
  + .Form-check-label:before {
622
- background-color: hsla($bg-Active-hsl, 0.6);
623
+ background-color: hsla($Bg-accent-hsl, 0.6);
623
624
  }
624
625
  }
625
626
 
@@ -628,12 +629,12 @@ $checkbox-size: 1.25rem; //20px
628
629
  opacity: 0;
629
630
 
630
631
  + .Form-check-label {
631
- color: $fg-Muted;
632
+ color: $Fg-muted;
632
633
  opacity: 0.38;
633
634
  cursor: default;
634
635
 
635
636
  &:before {
636
- background-color: $fg-Muted;
637
+ background-color: $Fg-muted;
637
638
  }
638
639
  }
639
640
  }
@@ -715,15 +716,15 @@ $checkbox-size: 1.25rem; //20px
715
716
  height: 16px;
716
717
  border-top: 2px solid transparent;
717
718
  border-left: 2px solid transparent;
718
- border-right: 2px solid $bg-Active;
719
- border-bottom: 2px solid $bg-Active;
719
+ border-right: 2px solid $Bg-accent;
720
+ border-bottom: 2px solid $Bg-accent;
720
721
  //border-color: transparent $input-background $input-background transparent;
721
722
  z-index: 1;
722
723
  }
723
724
 
724
725
  + .Form-check-label:after {
725
726
  top: 0;
726
- border-color: $bg-Active;
727
+ border-color: $Bg-accent;
727
728
  background-color: transparent;
728
729
  z-index: 0;
729
730
  }
@@ -754,14 +755,14 @@ $checkbox-size: 1.25rem; //20px
754
755
  width: 11px;
755
756
  height: 14px;
756
757
  border: none;
757
- border-right: 2px solid $bg-Active;
758
+ border-right: 2px solid $Bg-accent;
758
759
  transform: rotate(90deg);
759
760
  transform-origin: 100% 100%;
760
761
  z-index: 1;
761
762
  }
762
763
 
763
764
  + .Form-check-label:after {
764
- border-color: $bg-Active;
765
+ border-color: $Bg-accent;
765
766
  }
766
767
  }
767
768
 
@@ -770,19 +771,19 @@ $checkbox-size: 1.25rem; //20px
770
771
  /* Disabled */
771
772
  &:disabled {
772
773
  + .Form-check-label {
773
- color: $fg-Muted;
774
+ color: $Fg-muted;
774
775
  cursor: default;
775
776
  }
776
777
 
777
778
  &:not(:checked) {
778
779
  + .Form-check-label:before {
779
780
  background-color: transparent;
780
- border-color: $fg-Muted;
781
+ //border-color: $Fg-muted;
781
782
  }
782
783
 
783
784
  + .Form-check-label:after {
784
785
  border-color: transparent;
785
- background-color: $fg-Muted;
786
+ background-color: $Fg-muted;
786
787
  }
787
788
  }
788
789
 
@@ -791,13 +792,13 @@ $checkbox-size: 1.25rem; //20px
791
792
  background-color: transparent;
792
793
  border-top: 2px solid transparent;
793
794
  border-left: 2px solid transparent;
794
- border-right: 2px solid $fg-Active;
795
- border-bottom: 2px solid $fg-Active;
795
+ border-right: 2px solid $Fg-accent;
796
+ border-bottom: 2px solid $Fg-accent;
796
797
  }
797
798
 
798
799
  + .Form-check-label:after {
799
- background-color: $fg-Muted;
800
- border-color: $fg-Muted;
800
+ background-color: $Fg-muted;
801
+ border-color: $Fg-muted;
801
802
  }
802
803
  }
803
804
  }
@@ -814,23 +815,23 @@ $checkbox-size: 1.25rem; //20px
814
815
  + .Form-check-label:before {
815
816
  border-top: 2px solid transparent;
816
817
  border-left: 2px solid transparent;
817
- border-right: 2px solid $fg-Active;
818
- border-bottom: 2px solid $fg-Active;
818
+ border-right: 2px solid $Fg-accent;
819
+ border-bottom: 2px solid $Fg-accent;
819
820
  }
820
821
 
821
822
  + .Form-check-label:after {
822
- background-color: $bg-Active;
823
+ background-color: $Bg-accent;
823
824
  }
824
825
  }
825
826
 
826
827
  /* Indeterminate */
827
828
  &.Indeterminate, &:indeterminate {
828
829
  + .Form-check-label:before {
829
- border-right: 2px solid $fg-Active;
830
+ border-right: 2px solid $Fg-accent;
830
831
  }
831
832
 
832
833
  + .Form-check-label:after {
833
- background-color: $bg-Active;
834
+ background-color: $Bg-accent;
834
835
  }
835
836
  }
836
837
 
@@ -840,7 +841,7 @@ $checkbox-size: 1.25rem; //20px
840
841
  &:disabled {
841
842
  &:checked {
842
843
  + .Form-check-label:after {
843
- background-color: $fg-Muted;
844
+ background-color: $Fg-muted;
844
845
  }
845
846
  }
846
847
  }
@@ -857,7 +858,7 @@ $checkbox-size: 1.25rem; //20px
857
858
  }
858
859
 
859
860
  &:before {
860
- border-color: $bg-Active;
861
+ border-color: $Bg-accent;
861
862
  }
862
863
  }
863
864
 
@@ -865,12 +866,12 @@ $checkbox-size: 1.25rem; //20px
865
866
  &:checked {
866
867
  + .Form-check-label {
867
868
  &:before {
868
- border-color: $bg-Active;
869
+ border-color: $Bg-accent;
869
870
  }
870
871
 
871
872
  &:after {
872
- border-color: $bg-Active;
873
- background-color: $bg-Active;
873
+ border-color: $Bg-accent;
874
+ background-color: $Bg-accent;
874
875
  z-index: 0;
875
876
  }
876
877
  }
@@ -898,20 +899,20 @@ $checkbox-size: 1.25rem; //20px
898
899
  /* Disabled */
899
900
  &:disabled {
900
901
  + .Form-check-label {
901
- color: $fg-Muted;
902
+ color: $Fg-muted;
902
903
 
903
904
  &:before {
904
905
  background-color: transparent;
905
- border-color: $fg-Muted;
906
+ border-color: $Fg-muted;
906
907
  }
907
908
  }
908
909
 
909
910
  &:not(:checked) + .Form-check-label:before {
910
- border-color: $fg-Muted;
911
+ border-color: $Fg-muted;
911
912
  }
912
913
 
913
914
  &:checked + .Form-check-label:after {
914
- background-color: $fg-Muted;
915
+ background-color: $Fg-muted;
915
916
  }
916
917
 
917
918
  }
@@ -943,16 +944,16 @@ $checkbox-size: 1.25rem; //20px
943
944
 
944
945
  &:checked {
945
946
  ~ .Lever {
946
- background-color: $bg-Dark;
947
+ background-color: $Bg-lighter;
947
948
 
948
949
  &:after {
949
- background-color: $bg-Active;
950
+ background-color: $Bg-accent;
950
951
  left: 24px;
951
952
  }
952
953
  }
953
954
 
954
955
  &:disabled + .Lever {
955
- background-color: $bg-Surface;
956
+ background-color: $Bg-surface;
956
957
  }
957
958
 
958
959
  &:not(:disabled) ~ .Lever:active:after {
@@ -970,7 +971,7 @@ $checkbox-size: 1.25rem; //20px
970
971
 
971
972
  &:disabled + .Lever:after,
972
973
  &:disabled:checked + .Lever:after {
973
- background-color: $fg-Muted;
974
+ background-color: $Fg-muted;
974
975
  }
975
976
  }
976
977
 
@@ -982,7 +983,7 @@ $checkbox-size: 1.25rem; //20px
982
983
  position: relative;
983
984
  width: 40px;
984
985
  height: 15px;
985
- background-color: $bg-Lightest;
986
+ background-color: $Bg-lightest;
986
987
  border-radius: 15px;
987
988
  transition: background 0.3s ease;
988
989
  vertical-align: middle;
@@ -996,7 +997,7 @@ $checkbox-size: 1.25rem; //20px
996
997
  width: $checkbox-size;
997
998
  height: $checkbox-size;
998
999
  border-radius: 50%;
999
- background-color: $bg-Surface;
1000
+ background-color: $Bg-surface;
1000
1001
  border: $Border;
1001
1002
  box-shadow: $Shadow-inner;
1002
1003
  //left: -5px;