@x-plat/design-system 0.1.1

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 (165) hide show
  1. package/README.md +123 -0
  2. package/dist/attributes-DJIWir_0.d.cts +7 -0
  3. package/dist/attributes-DJIWir_0.d.ts +7 -0
  4. package/dist/breakpoints-DsXkJgdl.d.cts +35 -0
  5. package/dist/breakpoints-DsXkJgdl.d.ts +35 -0
  6. package/dist/colors-BG91q_uV.d.cts +133 -0
  7. package/dist/colors-BG91q_uV.d.ts +133 -0
  8. package/dist/components/Button/index.cjs +203 -0
  9. package/dist/components/Button/index.css +1231 -0
  10. package/dist/components/Button/index.d.cts +132 -0
  11. package/dist/components/Button/index.d.ts +132 -0
  12. package/dist/components/Button/index.js +176 -0
  13. package/dist/components/Card/index.cjs +56 -0
  14. package/dist/components/Card/index.css +27 -0
  15. package/dist/components/Card/index.d.cts +13 -0
  16. package/dist/components/Card/index.d.ts +13 -0
  17. package/dist/components/Card/index.js +29 -0
  18. package/dist/components/Chart/index.cjs +393 -0
  19. package/dist/components/Chart/index.css +4 -0
  20. package/dist/components/Chart/index.d.cts +10 -0
  21. package/dist/components/Chart/index.d.ts +10 -0
  22. package/dist/components/Chart/index.js +367 -0
  23. package/dist/components/CheckBox/index.cjs +1116 -0
  24. package/dist/components/CheckBox/index.css +598 -0
  25. package/dist/components/CheckBox/index.d.cts +132 -0
  26. package/dist/components/CheckBox/index.d.ts +132 -0
  27. package/dist/components/CheckBox/index.js +1089 -0
  28. package/dist/components/Chip/index.cjs +193 -0
  29. package/dist/components/Chip/index.css +1227 -0
  30. package/dist/components/Chip/index.d.cts +132 -0
  31. package/dist/components/Chip/index.d.ts +132 -0
  32. package/dist/components/Chip/index.js +166 -0
  33. package/dist/components/DatePicker/index.cjs +1653 -0
  34. package/dist/components/DatePicker/index.css +1417 -0
  35. package/dist/components/DatePicker/index.d.cts +56 -0
  36. package/dist/components/DatePicker/index.d.ts +56 -0
  37. package/dist/components/DatePicker/index.js +1613 -0
  38. package/dist/components/HtmlTypeWriter/index.cjs +172 -0
  39. package/dist/components/HtmlTypeWriter/index.css +23 -0
  40. package/dist/components/HtmlTypeWriter/index.d.cts +14 -0
  41. package/dist/components/HtmlTypeWriter/index.d.ts +14 -0
  42. package/dist/components/HtmlTypeWriter/index.js +135 -0
  43. package/dist/components/ImageSelector/index.cjs +1063 -0
  44. package/dist/components/ImageSelector/index.css +85 -0
  45. package/dist/components/ImageSelector/index.d.cts +10 -0
  46. package/dist/components/ImageSelector/index.d.ts +10 -0
  47. package/dist/components/ImageSelector/index.js +1026 -0
  48. package/dist/components/Input/index.cjs +410 -0
  49. package/dist/components/Input/index.css +74 -0
  50. package/dist/components/Input/index.d.cts +23 -0
  51. package/dist/components/Input/index.d.ts +23 -0
  52. package/dist/components/Input/index.js +372 -0
  53. package/dist/components/Modal/index.cjs +101 -0
  54. package/dist/components/Modal/index.css +39 -0
  55. package/dist/components/Modal/index.d.cts +16 -0
  56. package/dist/components/Modal/index.d.ts +16 -0
  57. package/dist/components/Modal/index.js +64 -0
  58. package/dist/components/PopOver/index.cjs +176 -0
  59. package/dist/components/PopOver/index.css +27 -0
  60. package/dist/components/PopOver/index.d.cts +15 -0
  61. package/dist/components/PopOver/index.d.ts +15 -0
  62. package/dist/components/PopOver/index.js +139 -0
  63. package/dist/components/Radio/index.cjs +257 -0
  64. package/dist/components/Radio/index.css +777 -0
  65. package/dist/components/Radio/index.d.cts +154 -0
  66. package/dist/components/Radio/index.d.ts +154 -0
  67. package/dist/components/Radio/index.js +219 -0
  68. package/dist/components/Select/index.cjs +1203 -0
  69. package/dist/components/Select/index.css +136 -0
  70. package/dist/components/Select/index.d.cts +44 -0
  71. package/dist/components/Select/index.d.ts +44 -0
  72. package/dist/components/Select/index.js +1165 -0
  73. package/dist/components/Swiper/index.cjs +144 -0
  74. package/dist/components/Swiper/index.d.cts +24 -0
  75. package/dist/components/Swiper/index.d.ts +24 -0
  76. package/dist/components/Swiper/index.js +128 -0
  77. package/dist/components/Switch/index.cjs +240 -0
  78. package/dist/components/Switch/index.css +780 -0
  79. package/dist/components/Switch/index.d.cts +131 -0
  80. package/dist/components/Switch/index.d.ts +131 -0
  81. package/dist/components/Switch/index.js +203 -0
  82. package/dist/components/Tab/index.cjs +122 -0
  83. package/dist/components/Tab/index.css +59 -0
  84. package/dist/components/Tab/index.d.cts +18 -0
  85. package/dist/components/Tab/index.d.ts +18 -0
  86. package/dist/components/Tab/index.js +85 -0
  87. package/dist/components/Table/index.cjs +384 -0
  88. package/dist/components/Table/index.css +4093 -0
  89. package/dist/components/Table/index.d.cts +174 -0
  90. package/dist/components/Table/index.d.ts +174 -0
  91. package/dist/components/Table/index.js +343 -0
  92. package/dist/components/TextArea/index.cjs +114 -0
  93. package/dist/components/TextArea/index.css +34 -0
  94. package/dist/components/TextArea/index.d.cts +6 -0
  95. package/dist/components/TextArea/index.d.ts +6 -0
  96. package/dist/components/TextArea/index.js +77 -0
  97. package/dist/components/Tooltip/index.cjs +210 -0
  98. package/dist/components/Tooltip/index.css +599 -0
  99. package/dist/components/Tooltip/index.d.cts +134 -0
  100. package/dist/components/Tooltip/index.d.ts +134 -0
  101. package/dist/components/Tooltip/index.js +173 -0
  102. package/dist/components/Video/index.cjs +269 -0
  103. package/dist/components/Video/index.css +71 -0
  104. package/dist/components/Video/index.d.cts +15 -0
  105. package/dist/components/Video/index.d.ts +15 -0
  106. package/dist/components/Video/index.js +232 -0
  107. package/dist/components/index.cjs +3221 -0
  108. package/dist/components/index.css +9972 -0
  109. package/dist/components/index.d.cts +23 -0
  110. package/dist/components/index.d.ts +23 -0
  111. package/dist/components/index.js +3167 -0
  112. package/dist/index.cjs +8216 -0
  113. package/dist/index.css +10087 -0
  114. package/dist/index.d.cts +31 -0
  115. package/dist/index.d.ts +31 -0
  116. package/dist/index.js +7855 -0
  117. package/dist/layout/Grid/FullGrid/index.cjs +54 -0
  118. package/dist/layout/Grid/FullGrid/index.css +21 -0
  119. package/dist/layout/Grid/FullGrid/index.d.cts +9 -0
  120. package/dist/layout/Grid/FullGrid/index.d.ts +9 -0
  121. package/dist/layout/Grid/FullGrid/index.js +27 -0
  122. package/dist/layout/Grid/FullScreen/index.cjs +54 -0
  123. package/dist/layout/Grid/FullScreen/index.css +23 -0
  124. package/dist/layout/Grid/FullScreen/index.d.cts +9 -0
  125. package/dist/layout/Grid/FullScreen/index.d.ts +9 -0
  126. package/dist/layout/Grid/FullScreen/index.js +27 -0
  127. package/dist/layout/Grid/GapGrid/index.cjs +32 -0
  128. package/dist/layout/Grid/GapGrid/index.d.cts +12 -0
  129. package/dist/layout/Grid/GapGrid/index.d.ts +12 -0
  130. package/dist/layout/Grid/GapGrid/index.js +11 -0
  131. package/dist/layout/Grid/Item/index.cjs +71 -0
  132. package/dist/layout/Grid/Item/index.css +19 -0
  133. package/dist/layout/Grid/Item/index.d.cts +20 -0
  134. package/dist/layout/Grid/Item/index.d.ts +20 -0
  135. package/dist/layout/Grid/Item/index.js +44 -0
  136. package/dist/layout/Grid/index.cjs +95 -0
  137. package/dist/layout/Grid/index.css +65 -0
  138. package/dist/layout/Grid/index.d.cts +5 -0
  139. package/dist/layout/Grid/index.d.ts +5 -0
  140. package/dist/layout/Grid/index.js +65 -0
  141. package/dist/layout/Header/index.cjs +45 -0
  142. package/dist/layout/Header/index.css +11 -0
  143. package/dist/layout/Header/index.d.cts +10 -0
  144. package/dist/layout/Header/index.d.ts +10 -0
  145. package/dist/layout/Header/index.js +18 -0
  146. package/dist/layout/Layout/index.cjs +44 -0
  147. package/dist/layout/Layout/index.css +23 -0
  148. package/dist/layout/Layout/index.d.cts +15 -0
  149. package/dist/layout/Layout/index.d.ts +15 -0
  150. package/dist/layout/Layout/index.js +17 -0
  151. package/dist/layout/SideBar/index.cjs +101 -0
  152. package/dist/layout/SideBar/index.css +10 -0
  153. package/dist/layout/SideBar/index.d.cts +16 -0
  154. package/dist/layout/SideBar/index.d.ts +16 -0
  155. package/dist/layout/SideBar/index.js +62 -0
  156. package/dist/layout/index.cjs +188 -0
  157. package/dist/layout/index.css +112 -0
  158. package/dist/layout/index.d.cts +8 -0
  159. package/dist/layout/index.d.ts +8 -0
  160. package/dist/layout/index.js +143 -0
  161. package/dist/tokens/index.cjs +6225 -0
  162. package/dist/tokens/index.d.cts +593 -0
  163. package/dist/tokens/index.d.ts +593 -0
  164. package/dist/tokens/index.js +5900 -0
  165. package/package.json +86 -0
@@ -0,0 +1,780 @@
1
+ /* src/components/Switch/switch.scss */
2
+ .lib-xplat-switch {
3
+ position: relative;
4
+ width: 4rem;
5
+ height: 2rem;
6
+ border-radius: 1rem;
7
+ cursor: pointer;
8
+ transition: background-color 0.2s, border-color 0.2s;
9
+ border: 1px solid transparent;
10
+ background-color: #D4D4D4;
11
+ border-color: #D4D4D4;
12
+ }
13
+ .lib-xplat-switch.disabled {
14
+ opacity: 0.5;
15
+ cursor: not-allowed;
16
+ pointer-events: none;
17
+ }
18
+ .lib-xplat-switch.animating {
19
+ pointer-events: none;
20
+ cursor: wait;
21
+ }
22
+ .lib-xplat-switch.checked.xplat-red-50 {
23
+ background-color: #FFF0F0;
24
+ border-color: #FFF0F0;
25
+ }
26
+ .lib-xplat-switch.checked.xplat-red-50:hover:not(.disabled):not(.animating) {
27
+ background-color: rgb(255, 199.2, 199.2);
28
+ border-color: rgb(255, 199.2, 199.2);
29
+ }
30
+ .lib-xplat-switch.checked.xplat-red-100 {
31
+ background-color: #FFDDDE;
32
+ border-color: #FFDDDE;
33
+ }
34
+ .lib-xplat-switch.checked.xplat-red-100:hover:not(.disabled):not(.animating) {
35
+ background-color: rgb(255, 180.2, 182.4);
36
+ border-color: rgb(255, 180.2, 182.4);
37
+ }
38
+ .lib-xplat-switch.checked.xplat-red-200 {
39
+ background-color: #FFC1C2;
40
+ border-color: #FFC1C2;
41
+ }
42
+ .lib-xplat-switch.checked.xplat-red-200:hover:not(.disabled):not(.animating) {
43
+ background-color: rgb(255, 152.2, 153.8580645161);
44
+ border-color: rgb(255, 152.2, 153.8580645161);
45
+ }
46
+ .lib-xplat-switch.checked.xplat-red-300 {
47
+ background-color: #FF9698;
48
+ border-color: #FF9698;
49
+ }
50
+ .lib-xplat-switch.checked.xplat-red-300:hover:not(.disabled):not(.animating) {
51
+ background-color: rgb(255, 109.2, 111.9771428571);
52
+ border-color: rgb(255, 109.2, 111.9771428571);
53
+ }
54
+ .lib-xplat-switch.checked.xplat-red-400 {
55
+ background-color: #FF5A5D;
56
+ border-color: #FF5A5D;
57
+ }
58
+ .lib-xplat-switch.checked.xplat-red-400:hover:not(.disabled):not(.animating) {
59
+ background-color: rgb(255, 49.2, 52.9418181818);
60
+ border-color: rgb(255, 49.2, 52.9418181818);
61
+ }
62
+ .lib-xplat-switch.checked.xplat-red-500 {
63
+ background-color: #FF272B;
64
+ border-color: #FF272B;
65
+ }
66
+ .lib-xplat-switch.checked.xplat-red-500:hover:not(.disabled):not(.animating) {
67
+ background-color: rgb(253.2, 0, 4.6888888889);
68
+ border-color: rgb(253.2, 0, 4.6888888889);
69
+ }
70
+ .lib-xplat-switch.checked.xplat-red-600 {
71
+ background-color: #F80409;
72
+ border-color: #F80409;
73
+ }
74
+ .lib-xplat-switch.checked.xplat-red-600:hover:not(.disabled):not(.animating) {
75
+ background-color: rgb(207.8476190476, 3.3523809524, 7.5428571429);
76
+ border-color: rgb(207.8476190476, 3.3523809524, 7.5428571429);
77
+ }
78
+ .lib-xplat-switch.checked.xplat-red-700 {
79
+ background-color: #D40105;
80
+ border-color: #D40105;
81
+ }
82
+ .lib-xplat-switch.checked.xplat-red-700:hover:not(.disabled):not(.animating) {
83
+ background-color: rgb(171.3915492958, 0.8084507042, 4.0422535211);
84
+ border-color: rgb(171.3915492958, 0.8084507042, 4.0422535211);
85
+ }
86
+ .lib-xplat-switch.checked.xplat-red-800 {
87
+ background-color: #AE0609;
88
+ border-color: #AE0609;
89
+ }
90
+ .lib-xplat-switch.checked.xplat-red-800:hover:not(.disabled):not(.animating) {
91
+ background-color: rgb(134.56, 4.64, 6.96);
92
+ border-color: rgb(134.56, 4.64, 6.96);
93
+ }
94
+ .lib-xplat-switch.checked.xplat-red-900 {
95
+ background-color: #900C0F;
96
+ border-color: #900C0F;
97
+ }
98
+ .lib-xplat-switch.checked.xplat-red-900:hover:not(.disabled):not(.animating) {
99
+ background-color: rgb(106.3384615385, 8.8615384615, 11.0769230769);
100
+ border-color: rgb(106.3384615385, 8.8615384615, 11.0769230769);
101
+ }
102
+ .lib-xplat-switch.checked.xplat-green-50 {
103
+ background-color: #E5F6EA;
104
+ border-color: #E5F6EA;
105
+ }
106
+ .lib-xplat-switch.checked.xplat-green-50:hover:not(.disabled):not(.animating) {
107
+ background-color: rgb(198.6914285714, 235.5085714286, 209.52);
108
+ border-color: rgb(198.6914285714, 235.5085714286, 209.52);
109
+ }
110
+ .lib-xplat-switch.checked.xplat-green-100 {
111
+ background-color: #C1E7CC;
112
+ border-color: #C1E7CC;
113
+ }
114
+ .lib-xplat-switch.checked.xplat-green-100:hover:not(.disabled):not(.animating) {
115
+ background-color: rgb(163.5860465116, 219.6139534884, 179.8046511628);
116
+ border-color: rgb(163.5860465116, 219.6139534884, 179.8046511628);
117
+ }
118
+ .lib-xplat-switch.checked.xplat-green-200 {
119
+ background-color: #98D8AC;
120
+ border-color: #98D8AC;
121
+ }
122
+ .lib-xplat-switch.checked.xplat-green-200:hover:not(.disabled):not(.animating) {
123
+ background-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
124
+ border-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
125
+ }
126
+ .lib-xplat-switch.checked.xplat-green-300 {
127
+ background-color: #6CCA8B;
128
+ border-color: #6CCA8B;
129
+ }
130
+ .lib-xplat-switch.checked.xplat-green-300:hover:not(.disabled):not(.animating) {
131
+ background-color: rgb(78.012, 191.188, 115.336);
132
+ border-color: rgb(78.012, 191.188, 115.336);
133
+ }
134
+ .lib-xplat-switch.checked.xplat-green-400 {
135
+ background-color: #47BE72;
136
+ border-color: #47BE72;
137
+ }
138
+ .lib-xplat-switch.checked.xplat-green-400:hover:not(.disabled):not(.animating) {
139
+ background-color: rgb(57.4819277108, 162.7180722892, 95.5084337349);
140
+ border-color: rgb(57.4819277108, 162.7180722892, 95.5084337349);
141
+ }
142
+ .lib-xplat-switch.checked.xplat-green-500 {
143
+ background-color: #10B259;
144
+ border-color: #10B259;
145
+ }
146
+ .lib-xplat-switch.checked.xplat-green-500:hover:not(.disabled):not(.animating) {
147
+ background-color: rgb(12.6350515464, 140.5649484536, 70.2824742268);
148
+ border-color: rgb(12.6350515464, 140.5649484536, 70.2824742268);
149
+ }
150
+ .lib-xplat-switch.checked.xplat-green-600 {
151
+ background-color: #00A34F;
152
+ border-color: #00A34F;
153
+ }
154
+ .lib-xplat-switch.checked.xplat-green-600:hover:not(.disabled):not(.animating) {
155
+ background-color: rgb(0, 122.2, 59.2257668712);
156
+ border-color: rgb(0, 122.2, 59.2257668712);
157
+ }
158
+ .lib-xplat-switch.checked.xplat-green-700 {
159
+ background-color: #009143;
160
+ border-color: #009143;
161
+ }
162
+ .lib-xplat-switch.checked.xplat-green-700:hover:not(.disabled):not(.animating) {
163
+ background-color: rgb(0, 104.2, 48.1475862069);
164
+ border-color: rgb(0, 104.2, 48.1475862069);
165
+ }
166
+ .lib-xplat-switch.checked.xplat-green-800 {
167
+ background-color: #007F38;
168
+ border-color: #007F38;
169
+ }
170
+ .lib-xplat-switch.checked.xplat-green-800:hover:not(.disabled):not(.animating) {
171
+ background-color: rgb(0, 86.2, 38.0094488189);
172
+ border-color: rgb(0, 86.2, 38.0094488189);
173
+ }
174
+ .lib-xplat-switch.checked.xplat-green-900 {
175
+ background-color: #006024;
176
+ border-color: #006024;
177
+ }
178
+ .lib-xplat-switch.checked.xplat-green-900:hover:not(.disabled):not(.animating) {
179
+ background-color: rgb(0, 55.2, 20.7);
180
+ border-color: rgb(0, 55.2, 20.7);
181
+ }
182
+ .lib-xplat-switch.checked.xplat-orange-50 {
183
+ background-color: #FFF8EC;
184
+ border-color: #FFF8EC;
185
+ }
186
+ .lib-xplat-switch.checked.xplat-orange-50:hover:not(.disabled):not(.animating) {
187
+ background-color: rgb(255, 232.9684210526, 195.2);
188
+ border-color: rgb(255, 232.9684210526, 195.2);
189
+ }
190
+ .lib-xplat-switch.checked.xplat-orange-100 {
191
+ background-color: #FFF0D3;
192
+ border-color: #FFF0D3;
193
+ }
194
+ .lib-xplat-switch.checked.xplat-orange-100:hover:not(.disabled):not(.animating) {
195
+ background-color: rgb(255, 226.0909090909, 170.2);
196
+ border-color: rgb(255, 226.0909090909, 170.2);
197
+ }
198
+ .lib-xplat-switch.checked.xplat-orange-200 {
199
+ background-color: #FFDDA5;
200
+ border-color: #FFDDA5;
201
+ }
202
+ .lib-xplat-switch.checked.xplat-orange-200:hover:not(.disabled):not(.animating) {
203
+ background-color: rgb(255, 205.5866666667, 124.2);
204
+ border-color: rgb(255, 205.5866666667, 124.2);
205
+ }
206
+ .lib-xplat-switch.checked.xplat-orange-300 {
207
+ background-color: #FFC46D;
208
+ border-color: #FFC46D;
209
+ }
210
+ .lib-xplat-switch.checked.xplat-orange-300:hover:not(.disabled):not(.animating) {
211
+ background-color: rgb(255, 179.5123287671, 68.2);
212
+ border-color: rgb(255, 179.5123287671, 68.2);
213
+ }
214
+ .lib-xplat-switch.checked.xplat-orange-400 {
215
+ background-color: #FF9F32;
216
+ border-color: #FF9F32;
217
+ }
218
+ .lib-xplat-switch.checked.xplat-orange-400:hover:not(.disabled):not(.animating) {
219
+ background-color: rgb(255, 139.8936585366, 9.2);
220
+ border-color: rgb(255, 139.8936585366, 9.2);
221
+ }
222
+ .lib-xplat-switch.checked.xplat-orange-500 {
223
+ background-color: #FF820A;
224
+ border-color: #FF820A;
225
+ }
226
+ .lib-xplat-switch.checked.xplat-orange-500:hover:not(.disabled):not(.animating) {
227
+ background-color: rgb(224.2, 109.812244898, 0);
228
+ border-color: rgb(224.2, 109.812244898, 0);
229
+ }
230
+ .lib-xplat-switch.checked.xplat-orange-600 {
231
+ background-color: #FF6900;
232
+ border-color: #FF6900;
233
+ }
234
+ .lib-xplat-switch.checked.xplat-orange-600:hover:not(.disabled):not(.animating) {
235
+ background-color: rgb(214.2, 88.2, 0);
236
+ border-color: rgb(214.2, 88.2, 0);
237
+ }
238
+ .lib-xplat-switch.checked.xplat-orange-700 {
239
+ background-color: #CC4B02;
240
+ border-color: #CC4B02;
241
+ }
242
+ .lib-xplat-switch.checked.xplat-orange-700:hover:not(.disabled):not(.animating) {
243
+ background-color: rgb(163.5961165049, 60.145631068, 1.6038834951);
244
+ border-color: rgb(163.5961165049, 60.145631068, 1.6038834951);
245
+ }
246
+ .lib-xplat-switch.checked.xplat-orange-800 {
247
+ background-color: #A13A0B;
248
+ border-color: #A13A0B;
249
+ }
250
+ .lib-xplat-switch.checked.xplat-orange-800:hover:not(.disabled):not(.animating) {
251
+ background-color: rgb(122.8093023256, 44.2418604651, 8.3906976744);
252
+ border-color: rgb(122.8093023256, 44.2418604651, 8.3906976744);
253
+ }
254
+ .lib-xplat-switch.checked.xplat-orange-900 {
255
+ background-color: #82320C;
256
+ border-color: #82320C;
257
+ }
258
+ .lib-xplat-switch.checked.xplat-orange-900:hover:not(.disabled):not(.animating) {
259
+ background-color: rgb(92.6478873239, 35.6338028169, 8.5521126761);
260
+ border-color: rgb(92.6478873239, 35.6338028169, 8.5521126761);
261
+ }
262
+ .lib-xplat-switch.checked.xplat-yellow-50 {
263
+ background-color: #FFFDE7;
264
+ border-color: #FFFDE7;
265
+ }
266
+ .lib-xplat-switch.checked.xplat-yellow-50:hover:not(.disabled):not(.animating) {
267
+ background-color: rgb(255, 249.6, 190.2);
268
+ border-color: rgb(255, 249.6, 190.2);
269
+ }
270
+ .lib-xplat-switch.checked.xplat-yellow-100 {
271
+ background-color: #FFFAC1;
272
+ border-color: #FFFAC1;
273
+ }
274
+ .lib-xplat-switch.checked.xplat-yellow-100:hover:not(.disabled):not(.animating) {
275
+ background-color: rgb(255, 246.7096774194, 152.2);
276
+ border-color: rgb(255, 246.7096774194, 152.2);
277
+ }
278
+ .lib-xplat-switch.checked.xplat-yellow-200 {
279
+ background-color: #FFF186;
280
+ border-color: #FFF186;
281
+ }
282
+ .lib-xplat-switch.checked.xplat-yellow-200:hover:not(.disabled):not(.animating) {
283
+ background-color: rgb(255, 236.279338843, 93.2);
284
+ border-color: rgb(255, 236.279338843, 93.2);
285
+ }
286
+ .lib-xplat-switch.checked.xplat-yellow-300 {
287
+ background-color: #FFE041;
288
+ border-color: #FFE041;
289
+ }
290
+ .lib-xplat-switch.checked.xplat-yellow-300:hover:not(.disabled):not(.animating) {
291
+ background-color: rgb(255, 217.3431578947, 24.2);
292
+ border-color: rgb(255, 217.3431578947, 24.2);
293
+ }
294
+ .lib-xplat-switch.checked.xplat-yellow-400 {
295
+ background-color: #FFCC0D;
296
+ border-color: #FFCC0D;
297
+ }
298
+ .lib-xplat-switch.checked.xplat-yellow-400:hover:not(.disabled):not(.animating) {
299
+ background-color: rgb(227.2, 179.3190082645, 0);
300
+ border-color: rgb(227.2, 179.3190082645, 0);
301
+ }
302
+ .lib-xplat-switch.checked.xplat-yellow-500 {
303
+ background-color: #F0B100;
304
+ border-color: #F0B100;
305
+ }
306
+ .lib-xplat-switch.checked.xplat-yellow-500:hover:not(.disabled):not(.animating) {
307
+ background-color: rgb(199.2, 146.91, 0);
308
+ border-color: rgb(199.2, 146.91, 0);
309
+ }
310
+ .lib-xplat-switch.checked.xplat-yellow-600 {
311
+ background-color: #D18800;
312
+ border-color: #D18800;
313
+ }
314
+ .lib-xplat-switch.checked.xplat-yellow-600:hover:not(.disabled):not(.animating) {
315
+ background-color: rgb(168.2, 109.4507177033, 0);
316
+ border-color: rgb(168.2, 109.4507177033, 0);
317
+ }
318
+ .lib-xplat-switch.checked.xplat-yellow-700 {
319
+ background-color: #A66002;
320
+ border-color: #A66002;
321
+ }
322
+ .lib-xplat-switch.checked.xplat-yellow-700:hover:not(.disabled):not(.animating) {
323
+ background-color: rgb(125.6857142857, 72.6857142857, 1.5142857143);
324
+ border-color: rgb(125.6857142857, 72.6857142857, 1.5142857143);
325
+ }
326
+ .lib-xplat-switch.checked.xplat-yellow-800 {
327
+ background-color: #894B0A;
328
+ border-color: #894B0A;
329
+ }
330
+ .lib-xplat-switch.checked.xplat-yellow-800:hover:not(.disabled):not(.animating) {
331
+ background-color: rgb(98.9755102041, 54.1836734694, 7.2244897959);
332
+ border-color: rgb(98.9755102041, 54.1836734694, 7.2244897959);
333
+ }
334
+ .lib-xplat-switch.checked.xplat-yellow-900 {
335
+ background-color: #743D0F;
336
+ border-color: #743D0F;
337
+ }
338
+ .lib-xplat-switch.checked.xplat-yellow-900:hover:not(.disabled):not(.animating) {
339
+ background-color: rgb(79.8717557252, 42.0015267176, 10.3282442748);
340
+ border-color: rgb(79.8717557252, 42.0015267176, 10.3282442748);
341
+ }
342
+ .lib-xplat-switch.checked.xplat-blue-50 {
343
+ background-color: #F1F4FD;
344
+ border-color: #F1F4FD;
345
+ }
346
+ .lib-xplat-switch.checked.xplat-blue-50:hover:not(.disabled):not(.animating) {
347
+ background-color: rgb(205.3, 215.95, 247.9);
348
+ border-color: rgb(205.3, 215.95, 247.9);
349
+ }
350
+ .lib-xplat-switch.checked.xplat-blue-100 {
351
+ background-color: #DFE7FA;
352
+ border-color: #DFE7FA;
353
+ }
354
+ .lib-xplat-switch.checked.xplat-blue-100:hover:not(.disabled):not(.animating) {
355
+ background-color: rgb(187.7135135135, 204.5351351351, 244.4864864865);
356
+ border-color: rgb(187.7135135135, 204.5351351351, 244.4864864865);
357
+ }
358
+ .lib-xplat-switch.checked.xplat-blue-200 {
359
+ background-color: #C5D4F8;
360
+ border-color: #C5D4F8;
361
+ }
362
+ .lib-xplat-switch.checked.xplat-blue-200:hover:not(.disabled):not(.animating) {
363
+ background-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
364
+ border-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
365
+ }
366
+ .lib-xplat-switch.checked.xplat-blue-300 {
367
+ background-color: #9EB8F2;
368
+ border-color: #9EB8F2;
369
+ }
370
+ .lib-xplat-switch.checked.xplat-blue-300:hover:not(.disabled):not(.animating) {
371
+ background-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
372
+ border-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
373
+ }
374
+ .lib-xplat-switch.checked.xplat-blue-400 {
375
+ background-color: #7093EA;
376
+ border-color: #7093EA;
377
+ }
378
+ .lib-xplat-switch.checked.xplat-blue-400:hover:not(.disabled):not(.animating) {
379
+ background-color: rgb(76.4243902439, 120.1317073171, 228.7756097561);
380
+ border-color: rgb(76.4243902439, 120.1317073171, 228.7756097561);
381
+ }
382
+ .lib-xplat-switch.checked.xplat-blue-500 {
383
+ background-color: #4D6DE3;
384
+ border-color: #4D6DE3;
385
+ }
386
+ .lib-xplat-switch.checked.xplat-blue-500:hover:not(.disabled):not(.animating) {
387
+ background-color: rgb(41.745631068, 80.0834951456, 221.454368932);
388
+ border-color: rgb(41.745631068, 80.0834951456, 221.454368932);
389
+ }
390
+ .lib-xplat-switch.checked.xplat-blue-600 {
391
+ background-color: #3950D7;
392
+ border-color: #3950D7;
393
+ }
394
+ .lib-xplat-switch.checked.xplat-blue-600:hover:not(.disabled):not(.animating) {
395
+ background-color: rgb(38.8571428571, 61.2, 192.3428571429);
396
+ border-color: rgb(38.8571428571, 61.2, 192.3428571429);
397
+ }
398
+ .lib-xplat-switch.checked.xplat-blue-700 {
399
+ background-color: #303EC5;
400
+ border-color: #303EC5;
401
+ }
402
+ .lib-xplat-switch.checked.xplat-blue-700:hover:not(.disabled):not(.animating) {
403
+ background-color: rgb(40.0065306122, 51.6751020408, 164.1934693878);
404
+ border-color: rgb(40.0065306122, 51.6751020408, 164.1934693878);
405
+ }
406
+ .lib-xplat-switch.checked.xplat-blue-800 {
407
+ background-color: #2D35A0;
408
+ border-color: #2D35A0;
409
+ }
410
+ .lib-xplat-switch.checked.xplat-blue-800:hover:not(.disabled):not(.animating) {
411
+ background-color: rgb(36.043902439, 42.4517073171, 128.156097561);
412
+ border-color: rgb(36.043902439, 42.4517073171, 128.156097561);
413
+ }
414
+ .lib-xplat-switch.checked.xplat-blue-900 {
415
+ background-color: #29317F;
416
+ border-color: #29317F;
417
+ }
418
+ .lib-xplat-switch.checked.xplat-blue-900:hover:not(.disabled):not(.animating) {
419
+ background-color: rgb(31.0428571429, 37.1, 96.1571428571);
420
+ border-color: rgb(31.0428571429, 37.1, 96.1571428571);
421
+ }
422
+ .lib-xplat-switch.checked.xplat-lightblue-50 {
423
+ background-color: #EEFAFF;
424
+ border-color: #EEFAFF;
425
+ }
426
+ .lib-xplat-switch.checked.xplat-lightblue-50:hover:not(.disabled):not(.animating) {
427
+ background-color: rgb(197.2, 238, 255);
428
+ border-color: rgb(197.2, 238, 255);
429
+ }
430
+ .lib-xplat-switch.checked.xplat-lightblue-100 {
431
+ background-color: #D9F4FF;
432
+ border-color: #D9F4FF;
433
+ }
434
+ .lib-xplat-switch.checked.xplat-lightblue-100:hover:not(.disabled):not(.animating) {
435
+ background-color: rgb(176.2, 232.1894736842, 255);
436
+ border-color: rgb(176.2, 232.1894736842, 255);
437
+ }
438
+ .lib-xplat-switch.checked.xplat-lightblue-200 {
439
+ background-color: #BBEDFF;
440
+ border-color: #BBEDFF;
441
+ }
442
+ .lib-xplat-switch.checked.xplat-lightblue-200:hover:not(.disabled):not(.animating) {
443
+ background-color: rgb(146.2, 226.2, 255);
444
+ border-color: rgb(146.2, 226.2, 255);
445
+ }
446
+ .lib-xplat-switch.checked.xplat-lightblue-300 {
447
+ background-color: #8DE3FF;
448
+ border-color: #8DE3FF;
449
+ }
450
+ .lib-xplat-switch.checked.xplat-lightblue-300:hover:not(.disabled):not(.animating) {
451
+ background-color: rgb(100.2, 216.9789473684, 255);
452
+ border-color: rgb(100.2, 216.9789473684, 255);
453
+ }
454
+ .lib-xplat-switch.checked.xplat-lightblue-400 {
455
+ background-color: #57D0FF;
456
+ border-color: #57D0FF;
457
+ }
458
+ .lib-xplat-switch.checked.xplat-lightblue-400:hover:not(.disabled):not(.animating) {
459
+ background-color: rgb(46.2, 196.5857142857, 255);
460
+ border-color: rgb(46.2, 196.5857142857, 255);
461
+ }
462
+ .lib-xplat-switch.checked.xplat-lightblue-500 {
463
+ background-color: #30B6FF;
464
+ border-color: #30B6FF;
465
+ }
466
+ .lib-xplat-switch.checked.xplat-lightblue-500:hover:not(.disabled):not(.animating) {
467
+ background-color: rgb(7.2, 167.6115942029, 255);
468
+ border-color: rgb(7.2, 167.6115942029, 255);
469
+ }
470
+ .lib-xplat-switch.checked.xplat-lightblue-600 {
471
+ background-color: #1999F7;
472
+ border-color: #1999F7;
473
+ }
474
+ .lib-xplat-switch.checked.xplat-lightblue-600:hover:not(.disabled):not(.animating) {
475
+ background-color: rgb(7.7714285714, 132.1142857143, 223.4285714286);
476
+ border-color: rgb(7.7714285714, 132.1142857143, 223.4285714286);
477
+ }
478
+ .lib-xplat-switch.checked.xplat-lightblue-700 {
479
+ background-color: #1280E3;
480
+ border-color: #1280E3;
481
+ }
482
+ .lib-xplat-switch.checked.xplat-lightblue-700:hover:not(.disabled):not(.animating) {
483
+ background-color: rgb(15.0024489796, 106.6840816327, 189.1975510204);
484
+ border-color: rgb(15.0024489796, 106.6840816327, 189.1975510204);
485
+ }
486
+ .lib-xplat-switch.checked.xplat-lightblue-800 {
487
+ background-color: #1566B8;
488
+ border-color: #1566B8;
489
+ }
490
+ .lib-xplat-switch.checked.xplat-lightblue-800:hover:not(.disabled):not(.animating) {
491
+ background-color: rgb(16.8204878049, 81.6995121951, 147.3795121951);
492
+ border-color: rgb(16.8204878049, 81.6995121951, 147.3795121951);
493
+ }
494
+ .lib-xplat-switch.checked.xplat-lightblue-900 {
495
+ background-color: #175791;
496
+ border-color: #175791;
497
+ }
498
+ .lib-xplat-switch.checked.xplat-lightblue-900:hover:not(.disabled):not(.animating) {
499
+ background-color: rgb(17.4142857143, 65.8714285714, 109.7857142857);
500
+ border-color: rgb(17.4142857143, 65.8714285714, 109.7857142857);
501
+ }
502
+ .lib-xplat-switch.checked.xplat-purple-50 {
503
+ background-color: #FBF6FE;
504
+ border-color: #FBF6FE;
505
+ }
506
+ .lib-xplat-switch.checked.xplat-purple-50:hover:not(.disabled):not(.animating) {
507
+ background-color: rgb(234.68, 209.28, 249.92);
508
+ border-color: rgb(234.68, 209.28, 249.92);
509
+ }
510
+ .lib-xplat-switch.checked.xplat-purple-100 {
511
+ background-color: #F5EAFD;
512
+ border-color: #F5EAFD;
513
+ }
514
+ .lib-xplat-switch.checked.xplat-purple-100:hover:not(.disabled):not(.animating) {
515
+ background-color: rgb(227.2608695652, 196.747826087, 249.452173913);
516
+ border-color: rgb(227.2608695652, 196.747826087, 249.452173913);
517
+ }
518
+ .lib-xplat-switch.checked.xplat-purple-200 {
519
+ background-color: #EDD8FC;
520
+ border-color: #EDD8FC;
521
+ }
522
+ .lib-xplat-switch.checked.xplat-purple-200:hover:not(.disabled):not(.animating) {
523
+ background-color: rgb(219.5142857143, 178.1142857143, 249.0857142857);
524
+ border-color: rgb(219.5142857143, 178.1142857143, 249.0857142857);
525
+ }
526
+ .lib-xplat-switch.checked.xplat-purple-300 {
527
+ background-color: #E0BAF8;
528
+ border-color: #E0BAF8;
529
+ }
530
+ .lib-xplat-switch.checked.xplat-purple-300:hover:not(.disabled):not(.animating) {
531
+ background-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
532
+ border-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
533
+ }
534
+ .lib-xplat-switch.checked.xplat-purple-400 {
535
+ background-color: #CD8DF3;
536
+ border-color: #CD8DF3;
537
+ }
538
+ .lib-xplat-switch.checked.xplat-purple-400:hover:not(.disabled):not(.animating) {
539
+ background-color: rgb(188.8095238095, 104.0857142857, 239.1142857143);
540
+ border-color: rgb(188.8095238095, 104.0857142857, 239.1142857143);
541
+ }
542
+ .lib-xplat-switch.checked.xplat-purple-500 {
543
+ background-color: #B961EB;
544
+ border-color: #B961EB;
545
+ }
546
+ .lib-xplat-switch.checked.xplat-purple-500:hover:not(.disabled):not(.animating) {
547
+ background-color: rgb(168.9550561798, 60.7842696629, 230.4157303371);
548
+ border-color: rgb(168.9550561798, 60.7842696629, 230.4157303371);
549
+ }
550
+ .lib-xplat-switch.checked.xplat-purple-600 {
551
+ background-color: #A541DC;
552
+ border-color: #A541DC;
553
+ }
554
+ .lib-xplat-switch.checked.xplat-purple-600:hover:not(.disabled):not(.animating) {
555
+ background-color: rgb(146.52, 37.9866666667, 206.2133333333);
556
+ border-color: rgb(146.52, 37.9866666667, 206.2133333333);
557
+ }
558
+ .lib-xplat-switch.checked.xplat-purple-700 {
559
+ background-color: #9230C5;
560
+ border-color: #9230C5;
561
+ }
562
+ .lib-xplat-switch.checked.xplat-purple-700:hover:not(.disabled):not(.animating) {
563
+ background-color: rgb(121.6865306122, 40.0065306122, 164.1934693878);
564
+ border-color: rgb(121.6865306122, 40.0065306122, 164.1934693878);
565
+ }
566
+ .lib-xplat-switch.checked.xplat-purple-800 {
567
+ background-color: #782B9E;
568
+ border-color: #782B9E;
569
+ }
570
+ .lib-xplat-switch.checked.xplat-purple-800:hover:not(.disabled):not(.animating) {
571
+ background-color: rgb(95.6417910448, 34.271641791, 125.928358209);
572
+ border-color: rgb(95.6417910448, 34.271641791, 125.928358209);
573
+ }
574
+ .lib-xplat-switch.checked.xplat-purple-900 {
575
+ background-color: #62247F;
576
+ border-color: #62247F;
577
+ }
578
+ .lib-xplat-switch.checked.xplat-purple-900:hover:not(.disabled):not(.animating) {
579
+ background-color: rgb(73.4699386503, 26.9889570552, 95.2110429448);
580
+ border-color: rgb(73.4699386503, 26.9889570552, 95.2110429448);
581
+ }
582
+ .lib-xplat-switch.checked.xplat-pink-50 {
583
+ background-color: #FFF4FE;
584
+ border-color: #FFF4FE;
585
+ }
586
+ .lib-xplat-switch.checked.xplat-pink-50:hover:not(.disabled):not(.animating) {
587
+ background-color: rgb(255, 203.2, 250.2909090909);
588
+ border-color: rgb(255, 203.2, 250.2909090909);
589
+ }
590
+ .lib-xplat-switch.checked.xplat-pink-100 {
591
+ background-color: #FFE7FD;
592
+ border-color: #FFE7FD;
593
+ }
594
+ .lib-xplat-switch.checked.xplat-pink-100:hover:not(.disabled):not(.animating) {
595
+ background-color: rgb(255, 190.2, 249.6);
596
+ border-color: rgb(255, 190.2, 249.6);
597
+ }
598
+ .lib-xplat-switch.checked.xplat-pink-200 {
599
+ background-color: #FFCFFA;
600
+ border-color: #FFCFFA;
601
+ }
602
+ .lib-xplat-switch.checked.xplat-pink-200:hover:not(.disabled):not(.animating) {
603
+ background-color: rgb(255, 166.2, 245.75);
604
+ border-color: rgb(255, 166.2, 245.75);
605
+ }
606
+ .lib-xplat-switch.checked.xplat-pink-300 {
607
+ background-color: #FEA9F1;
608
+ border-color: #FEA9F1;
609
+ }
610
+ .lib-xplat-switch.checked.xplat-pink-300:hover:not(.disabled):not(.animating) {
611
+ background-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
612
+ border-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
613
+ }
614
+ .lib-xplat-switch.checked.xplat-pink-400 {
615
+ background-color: #FD75E7;
616
+ border-color: #FD75E7;
617
+ }
618
+ .lib-xplat-switch.checked.xplat-pink-400:hover:not(.disabled):not(.animating) {
619
+ background-color: rgb(252.4171428571, 76.7828571429, 224.0057142857);
620
+ border-color: rgb(252.4171428571, 76.7828571429, 224.0057142857);
621
+ }
622
+ .lib-xplat-switch.checked.xplat-pink-500 {
623
+ background-color: #F553DA;
624
+ border-color: #F553DA;
625
+ }
626
+ .lib-xplat-switch.checked.xplat-pink-500:hover:not(.disabled):not(.animating) {
627
+ background-color: rgb(242.7582417582, 44.4417582418, 209.7054945055);
628
+ border-color: rgb(242.7582417582, 44.4417582418, 209.7054945055);
629
+ }
630
+ .lib-xplat-switch.checked.xplat-pink-600 {
631
+ background-color: #D821B6;
632
+ border-color: #D821B6;
633
+ }
634
+ .lib-xplat-switch.checked.xplat-pink-600:hover:not(.disabled):not(.animating) {
635
+ background-color: rgb(180.6072289157, 27.5927710843, 152.178313253);
636
+ border-color: rgb(180.6072289157, 27.5927710843, 152.178313253);
637
+ }
638
+ .lib-xplat-switch.checked.xplat-pink-700 {
639
+ background-color: #B31892;
640
+ border-color: #B31892;
641
+ }
642
+ .lib-xplat-switch.checked.xplat-pink-700:hover:not(.disabled):not(.animating) {
643
+ background-color: rgb(143.0236453202, 19.1763546798, 116.6561576355);
644
+ border-color: rgb(143.0236453202, 19.1763546798, 116.6561576355);
645
+ }
646
+ .lib-xplat-switch.checked.xplat-pink-800 {
647
+ background-color: #921676;
648
+ border-color: #921676;
649
+ }
650
+ .lib-xplat-switch.checked.xplat-pink-800:hover:not(.disabled):not(.animating) {
651
+ background-color: rgb(110.5428571429, 16.6571428571, 89.3428571429);
652
+ border-color: rgb(110.5428571429, 16.6571428571, 89.3428571429);
653
+ }
654
+ .lib-xplat-switch.checked.xplat-pink-900 {
655
+ background-color: #781761;
656
+ border-color: #781761;
657
+ }
658
+ .lib-xplat-switch.checked.xplat-pink-900:hover:not(.disabled):not(.animating) {
659
+ background-color: rgb(85.7622377622, 16.4377622378, 69.3244755245);
660
+ border-color: rgb(85.7622377622, 16.4377622378, 69.3244755245);
661
+ }
662
+ .lib-xplat-switch.checked.xplat-neutral-50 {
663
+ background-color: #FAFAFA;
664
+ border-color: #FAFAFA;
665
+ }
666
+ .lib-xplat-switch.checked.xplat-neutral-50:hover:not(.disabled):not(.animating) {
667
+ background-color: rgb(229.6, 229.6, 229.6);
668
+ border-color: rgb(229.6, 229.6, 229.6);
669
+ }
670
+ .lib-xplat-switch.checked.xplat-neutral-100 {
671
+ background-color: #F5F5F5;
672
+ border-color: #F5F5F5;
673
+ }
674
+ .lib-xplat-switch.checked.xplat-neutral-100:hover:not(.disabled):not(.animating) {
675
+ background-color: rgb(224.6, 224.6, 224.6);
676
+ border-color: rgb(224.6, 224.6, 224.6);
677
+ }
678
+ .lib-xplat-switch.checked.xplat-neutral-200 {
679
+ background-color: #E5E5E5;
680
+ border-color: #E5E5E5;
681
+ }
682
+ .lib-xplat-switch.checked.xplat-neutral-200:hover:not(.disabled):not(.animating) {
683
+ background-color: rgb(208.6, 208.6, 208.6);
684
+ border-color: rgb(208.6, 208.6, 208.6);
685
+ }
686
+ .lib-xplat-switch.checked.xplat-neutral-300 {
687
+ background-color: #D4D4D4;
688
+ border-color: #D4D4D4;
689
+ }
690
+ .lib-xplat-switch.checked.xplat-neutral-300:hover:not(.disabled):not(.animating) {
691
+ background-color: rgb(191.6, 191.6, 191.6);
692
+ border-color: rgb(191.6, 191.6, 191.6);
693
+ }
694
+ .lib-xplat-switch.checked.xplat-neutral-400 {
695
+ background-color: #A1A1A1;
696
+ border-color: #A1A1A1;
697
+ }
698
+ .lib-xplat-switch.checked.xplat-neutral-400:hover:not(.disabled):not(.animating) {
699
+ background-color: rgb(140.6, 140.6, 140.6);
700
+ border-color: rgb(140.6, 140.6, 140.6);
701
+ }
702
+ .lib-xplat-switch.checked.xplat-neutral-500 {
703
+ background-color: #737373;
704
+ border-color: #737373;
705
+ }
706
+ .lib-xplat-switch.checked.xplat-neutral-500:hover:not(.disabled):not(.animating) {
707
+ background-color: rgb(94.6, 94.6, 94.6);
708
+ border-color: rgb(94.6, 94.6, 94.6);
709
+ }
710
+ .lib-xplat-switch.checked.xplat-neutral-600 {
711
+ background-color: #525252;
712
+ border-color: #525252;
713
+ }
714
+ .lib-xplat-switch.checked.xplat-neutral-600:hover:not(.disabled):not(.animating) {
715
+ background-color: rgb(61.6, 61.6, 61.6);
716
+ border-color: rgb(61.6, 61.6, 61.6);
717
+ }
718
+ .lib-xplat-switch.checked.xplat-neutral-700 {
719
+ background-color: #404040;
720
+ border-color: #404040;
721
+ }
722
+ .lib-xplat-switch.checked.xplat-neutral-700:hover:not(.disabled):not(.animating) {
723
+ background-color: rgb(43.6, 43.6, 43.6);
724
+ border-color: rgb(43.6, 43.6, 43.6);
725
+ }
726
+ .lib-xplat-switch.checked.xplat-neutral-800 {
727
+ background-color: #262626;
728
+ border-color: #262626;
729
+ }
730
+ .lib-xplat-switch.checked.xplat-neutral-800:hover:not(.disabled):not(.animating) {
731
+ background-color: rgb(17.6, 17.6, 17.6);
732
+ border-color: rgb(17.6, 17.6, 17.6);
733
+ }
734
+ .lib-xplat-switch.checked.xplat-neutral-900 {
735
+ background-color: #171717;
736
+ border-color: #171717;
737
+ }
738
+ .lib-xplat-switch.checked.xplat-neutral-900:hover:not(.disabled):not(.animating) {
739
+ background-color: rgb(2.6, 2.6, 2.6);
740
+ border-color: rgb(2.6, 2.6, 2.6);
741
+ }
742
+ .lib-xplat-switch.checked.xplat-black {
743
+ background-color: #000000;
744
+ border-color: #000000;
745
+ }
746
+ .lib-xplat-switch.checked.xplat-black:hover:not(.disabled):not(.animating) {
747
+ background-color: hsl(0, 0%, -8%);
748
+ border-color: hsl(0, 0%, -8%);
749
+ }
750
+ .lib-xplat-switch.checked.xplat-white {
751
+ background-color: #FFFFFF;
752
+ border-color: #FFFFFF;
753
+ }
754
+ .lib-xplat-switch.checked.xplat-white:hover:not(.disabled):not(.animating) {
755
+ background-color: rgb(234.6, 234.6, 234.6);
756
+ border-color: rgb(234.6, 234.6, 234.6);
757
+ }
758
+ .lib-xplat-switch.checked.test-default {
759
+ background-color: #ffffff;
760
+ border-color: #ffffff;
761
+ }
762
+ .lib-xplat-switch.checked.test-default:hover:not(.disabled):not(.animating) {
763
+ background-color: rgb(234.6, 234.6, 234.6);
764
+ border-color: rgb(234.6, 234.6, 234.6);
765
+ }
766
+ .lib-xplat-switch > .knob {
767
+ position: absolute;
768
+ top: 50%;
769
+ left: 0;
770
+ width: 1.75rem;
771
+ height: 1.75rem;
772
+ background-color: #FFFFFF;
773
+ border-radius: 9999px;
774
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
775
+ transform: translateY(-50%);
776
+ transition: transform 0.25s;
777
+ }
778
+ .lib-xplat-switch > .knob.checked {
779
+ transform: translateY(-50%) translateX(2rem);
780
+ }