@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,1231 @@
1
+ /* src/components/Button/button.scss */
2
+ .lib-xplat-button {
3
+ border-radius: 0.5rem;
4
+ padding: 0.5rem 1rem;
5
+ font-weight: 500;
6
+ font-size: 1rem;
7
+ cursor: pointer;
8
+ transition: background-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
9
+ }
10
+ .lib-xplat-button:disabled {
11
+ cursor: not-allowed;
12
+ background-color: #A1A1A1 !important;
13
+ border-color: #A1A1A1 !important;
14
+ color: #FFFFFF !important;
15
+ }
16
+ .lib-xplat-button.primary {
17
+ color: #FFFFFF;
18
+ }
19
+ .lib-xplat-button.primary.xplat-red-50 {
20
+ background-color: #FFF0F0;
21
+ }
22
+ .lib-xplat-button.primary.xplat-red-50:hover {
23
+ background-color: hsl(0, 100%, 105.0588235294%);
24
+ }
25
+ .lib-xplat-button.primary.xplat-red-100 {
26
+ background-color: #FFDDDE;
27
+ }
28
+ .lib-xplat-button.primary.xplat-red-100:hover {
29
+ background-color: hsl(358.2352941176, 100%, 101.3333333333%);
30
+ }
31
+ .lib-xplat-button.primary.xplat-red-200 {
32
+ background-color: #FFC1C2;
33
+ }
34
+ .lib-xplat-button.primary.xplat-red-200:hover {
35
+ background-color: rgb(255, 152.2, 153.8580645161);
36
+ }
37
+ .lib-xplat-button.primary.xplat-red-300 {
38
+ background-color: #FF9698;
39
+ }
40
+ .lib-xplat-button.primary.xplat-red-300:hover {
41
+ background-color: rgb(255, 109.2, 111.9771428571);
42
+ }
43
+ .lib-xplat-button.primary.xplat-red-400 {
44
+ background-color: #FF5A5D;
45
+ }
46
+ .lib-xplat-button.primary.xplat-red-400:hover {
47
+ background-color: rgb(255, 141, 143.0727272727);
48
+ }
49
+ .lib-xplat-button.primary.xplat-red-500 {
50
+ background-color: #FF272B;
51
+ }
52
+ .lib-xplat-button.primary.xplat-red-500:hover {
53
+ background-color: rgb(255, 90, 93.0555555556);
54
+ }
55
+ .lib-xplat-button.primary.xplat-red-600 {
56
+ background-color: #F80409;
57
+ }
58
+ .lib-xplat-button.primary.xplat-red-600:hover {
59
+ background-color: rgb(251.7142857143, 51.2857142857, 55.3928571429);
60
+ }
61
+ .lib-xplat-button.primary.xplat-red-700 {
62
+ background-color: #D40105;
63
+ }
64
+ .lib-xplat-button.primary.xplat-red-700:hover {
65
+ background-color: rgb(253.8450704225, 10.1549295775, 14.7746478873);
66
+ }
67
+ .lib-xplat-button.primary.xplat-red-800 {
68
+ background-color: #AE0609;
69
+ }
70
+ .lib-xplat-button.primary.xplat-red-800:hover {
71
+ background-color: rgb(223.3, 7.7, 11.55);
72
+ }
73
+ .lib-xplat-button.primary.xplat-red-900 {
74
+ background-color: #900C0F;
75
+ }
76
+ .lib-xplat-button.primary.xplat-red-900:hover {
77
+ background-color: rgb(191.0769230769, 15.9230769231, 19.9038461538);
78
+ }
79
+ .lib-xplat-button.primary.xplat-green-50 {
80
+ background-color: #E5F6EA;
81
+ }
82
+ .lib-xplat-button.primary.xplat-green-50:hover {
83
+ background-color: hsl(137.6470588235, 48.5714285714%, 101.137254902%);
84
+ }
85
+ .lib-xplat-button.primary.xplat-green-100 {
86
+ background-color: #C1E7CC;
87
+ }
88
+ .lib-xplat-button.primary.xplat-green-100:hover {
89
+ background-color: rgb(222.4139534884, 242.3860465116, 228.1953488372);
90
+ }
91
+ .lib-xplat-button.primary.xplat-green-200 {
92
+ background-color: #98D8AC;
93
+ }
94
+ .lib-xplat-button.primary.xplat-green-200:hover {
95
+ background-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
96
+ }
97
+ .lib-xplat-button.primary.xplat-green-300 {
98
+ background-color: #6CCA8B;
99
+ }
100
+ .lib-xplat-button.primary.xplat-green-300:hover {
101
+ background-color: rgb(78.012, 191.188, 115.336);
102
+ }
103
+ .lib-xplat-button.primary.xplat-green-400 {
104
+ background-color: #47BE72;
105
+ }
106
+ .lib-xplat-button.primary.xplat-green-400:hover {
107
+ background-color: rgb(108.686746988, 203.313253012, 142.8795180723);
108
+ }
109
+ .lib-xplat-button.primary.xplat-green-500 {
110
+ background-color: #10B259;
111
+ }
112
+ .lib-xplat-button.primary.xplat-green-500:hover {
113
+ background-color: rgb(20.206185567, 224.793814433, 112.3969072165);
114
+ }
115
+ .lib-xplat-button.primary.xplat-green-600 {
116
+ background-color: #00A34F;
117
+ }
118
+ .lib-xplat-button.primary.xplat-green-600:hover {
119
+ background-color: rgb(0, 214, 103.717791411);
120
+ }
121
+ .lib-xplat-button.primary.xplat-green-700 {
122
+ background-color: #009143;
123
+ }
124
+ .lib-xplat-button.primary.xplat-green-700:hover {
125
+ background-color: rgb(0, 196, 90.5655172414);
126
+ }
127
+ .lib-xplat-button.primary.xplat-green-800 {
128
+ background-color: #007F38;
129
+ }
130
+ .lib-xplat-button.primary.xplat-green-800:hover {
131
+ background-color: rgb(0, 178, 78.4881889764);
132
+ }
133
+ .lib-xplat-button.primary.xplat-green-900 {
134
+ background-color: #006024;
135
+ }
136
+ .lib-xplat-button.primary.xplat-green-900:hover {
137
+ background-color: rgb(0, 147, 55.125);
138
+ }
139
+ .lib-xplat-button.primary.xplat-orange-50 {
140
+ background-color: #FFF8EC;
141
+ }
142
+ .lib-xplat-button.primary.xplat-orange-50:hover {
143
+ background-color: hsl(37.8947368421, 100%, 104.2745098039%);
144
+ }
145
+ .lib-xplat-button.primary.xplat-orange-100 {
146
+ background-color: #FFF0D3;
147
+ }
148
+ .lib-xplat-button.primary.xplat-orange-100:hover {
149
+ background-color: rgb(255, 253.9090909091, 251.8);
150
+ }
151
+ .lib-xplat-button.primary.xplat-orange-200 {
152
+ background-color: #FFDDA5;
153
+ }
154
+ .lib-xplat-button.primary.xplat-orange-200:hover {
155
+ background-color: rgb(255, 236.4133333333, 205.8);
156
+ }
157
+ .lib-xplat-button.primary.xplat-orange-300 {
158
+ background-color: #FFC46D;
159
+ }
160
+ .lib-xplat-button.primary.xplat-orange-300:hover {
161
+ background-color: rgb(255, 179.5123287671, 68.2);
162
+ }
163
+ .lib-xplat-button.primary.xplat-orange-400 {
164
+ background-color: #FF9F32;
165
+ }
166
+ .lib-xplat-button.primary.xplat-orange-400:hover {
167
+ background-color: rgb(255, 139.8936585366, 9.2);
168
+ }
169
+ .lib-xplat-button.primary.xplat-orange-500 {
170
+ background-color: #FF820A;
171
+ }
172
+ .lib-xplat-button.primary.xplat-orange-500:hover {
173
+ background-color: rgb(255, 156.0204081633, 61);
174
+ }
175
+ .lib-xplat-button.primary.xplat-orange-600 {
176
+ background-color: #FF6900;
177
+ }
178
+ .lib-xplat-button.primary.xplat-orange-600:hover {
179
+ background-color: #ff8733;
180
+ }
181
+ .lib-xplat-button.primary.xplat-orange-700 {
182
+ background-color: #CC4B02;
183
+ }
184
+ .lib-xplat-button.primary.xplat-orange-700:hover {
185
+ background-color: rgb(252.5436893204, 94.1116504854, 4.4563106796);
186
+ }
187
+ .lib-xplat-button.primary.xplat-orange-800 {
188
+ background-color: #A13A0B;
189
+ }
190
+ .lib-xplat-button.primary.xplat-orange-800:hover {
191
+ background-color: rgb(208.738372093, 75.1976744186, 14.261627907);
192
+ }
193
+ .lib-xplat-button.primary.xplat-orange-900 {
194
+ background-color: #82320C;
195
+ }
196
+ .lib-xplat-button.primary.xplat-orange-900:hover {
197
+ background-color: rgb(176.6901408451, 67.9577464789, 16.3098591549);
198
+ }
199
+ .lib-xplat-button.primary.xplat-yellow-50 {
200
+ background-color: #FFFDE7;
201
+ }
202
+ .lib-xplat-button.primary.xplat-yellow-50:hover {
203
+ background-color: hsl(55, 100%, 103.2941176471%);
204
+ }
205
+ .lib-xplat-button.primary.xplat-yellow-100 {
206
+ background-color: #FFFAC1;
207
+ }
208
+ .lib-xplat-button.primary.xplat-yellow-100:hover {
209
+ background-color: rgb(255, 253.2903225806, 233.8);
210
+ }
211
+ .lib-xplat-button.primary.xplat-yellow-200 {
212
+ background-color: #FFF186;
213
+ }
214
+ .lib-xplat-button.primary.xplat-yellow-200:hover {
215
+ background-color: rgb(255, 245.720661157, 174.8);
216
+ }
217
+ .lib-xplat-button.primary.xplat-yellow-300 {
218
+ background-color: #FFE041;
219
+ }
220
+ .lib-xplat-button.primary.xplat-yellow-300:hover {
221
+ background-color: rgb(255, 230.6568421053, 105.8);
222
+ }
223
+ .lib-xplat-button.primary.xplat-yellow-400 {
224
+ background-color: #FFCC0D;
225
+ }
226
+ .lib-xplat-button.primary.xplat-yellow-400:hover {
227
+ background-color: rgb(227.2, 179.3190082645, 0);
228
+ }
229
+ .lib-xplat-button.primary.xplat-yellow-500 {
230
+ background-color: #F0B100;
231
+ }
232
+ .lib-xplat-button.primary.xplat-yellow-500:hover {
233
+ background-color: rgb(199.2, 146.91, 0);
234
+ }
235
+ .lib-xplat-button.primary.xplat-yellow-600 {
236
+ background-color: #D18800;
237
+ }
238
+ .lib-xplat-button.primary.xplat-yellow-600:hover {
239
+ background-color: rgb(255, 167.6794258373, 5);
240
+ }
241
+ .lib-xplat-button.primary.xplat-yellow-700 {
242
+ background-color: #A66002;
243
+ }
244
+ .lib-xplat-button.primary.xplat-yellow-700:hover {
245
+ background-color: rgb(216.3928571429, 125.1428571429, 2.6071428571);
246
+ }
247
+ .lib-xplat-button.primary.xplat-yellow-800 {
248
+ background-color: #894B0A;
249
+ }
250
+ .lib-xplat-button.primary.xplat-yellow-800:hover {
251
+ background-color: rgb(184.5306122449, 101.0204081633, 13.4693877551);
252
+ }
253
+ .lib-xplat-button.primary.xplat-yellow-900 {
254
+ background-color: #743D0F;
255
+ }
256
+ .lib-xplat-button.primary.xplat-yellow-900:hover {
257
+ background-color: rgb(161.1603053435, 84.7480916031, 20.8396946565);
258
+ }
259
+ .lib-xplat-button.primary.xplat-blue-50 {
260
+ background-color: #F1F4FD;
261
+ }
262
+ .lib-xplat-button.primary.xplat-blue-50:hover {
263
+ background-color: hsl(225, 75%, 104.862745098%);
264
+ }
265
+ .lib-xplat-button.primary.xplat-blue-100 {
266
+ background-color: #DFE7FA;
267
+ }
268
+ .lib-xplat-button.primary.xplat-blue-100:hover {
269
+ background-color: hsl(222.2222222222, 72.972972973%, 100.7450980392%);
270
+ }
271
+ .lib-xplat-button.primary.xplat-blue-200 {
272
+ background-color: #C5D4F8;
273
+ }
274
+ .lib-xplat-button.primary.xplat-blue-200:hover {
275
+ background-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
276
+ }
277
+ .lib-xplat-button.primary.xplat-blue-300 {
278
+ background-color: #9EB8F2;
279
+ }
280
+ .lib-xplat-button.primary.xplat-blue-300:hover {
281
+ background-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
282
+ }
283
+ .lib-xplat-button.primary.xplat-blue-400 {
284
+ background-color: #7093EA;
285
+ }
286
+ .lib-xplat-button.primary.xplat-blue-400:hover {
287
+ background-color: rgb(156.4695121951, 180.5853658537, 240.5304878049);
288
+ }
289
+ .lib-xplat-button.primary.xplat-blue-500 {
290
+ background-color: #4D6DE3;
291
+ }
292
+ .lib-xplat-button.primary.xplat-blue-500:hover {
293
+ background-color: rgb(121.067961165, 145.145631068, 233.932038835);
294
+ }
295
+ .lib-xplat-button.primary.xplat-blue-600 {
296
+ background-color: #3950D7;
297
+ }
298
+ .lib-xplat-button.primary.xplat-blue-600:hover {
299
+ background-color: rgb(99.4285714286, 117.5, 223.5714285714);
300
+ }
301
+ .lib-xplat-button.primary.xplat-blue-700 {
302
+ background-color: #303EC5;
303
+ }
304
+ .lib-xplat-button.primary.xplat-blue-700:hover {
305
+ background-color: rgb(82.9265306122, 95.1551020408, 213.0734693878);
306
+ }
307
+ .lib-xplat-button.primary.xplat-blue-800 {
308
+ background-color: #2D35A0;
309
+ }
310
+ .lib-xplat-button.primary.xplat-blue-800:hover {
311
+ background-color: rgb(56.756097561, 66.6682926829, 199.243902439);
312
+ }
313
+ .lib-xplat-button.primary.xplat-blue-900 {
314
+ background-color: #29317F;
315
+ }
316
+ .lib-xplat-button.primary.xplat-blue-900:hover {
317
+ background-color: rgb(65.8607142857, 77.775, 193.9392857143);
318
+ }
319
+ .lib-xplat-button.primary.xplat-lightblue-50 {
320
+ background-color: #EEFAFF;
321
+ }
322
+ .lib-xplat-button.primary.xplat-lightblue-50:hover {
323
+ background-color: hsl(197.6470588235, 100%, 104.6666666667%);
324
+ }
325
+ .lib-xplat-button.primary.xplat-lightblue-100 {
326
+ background-color: #D9F4FF;
327
+ }
328
+ .lib-xplat-button.primary.xplat-lightblue-100:hover {
329
+ background-color: hsl(197.3684210526, 100%, 100.5490196078%);
330
+ }
331
+ .lib-xplat-button.primary.xplat-lightblue-200 {
332
+ background-color: #BBEDFF;
333
+ }
334
+ .lib-xplat-button.primary.xplat-lightblue-200:hover {
335
+ background-color: rgb(227.8, 247.8, 255);
336
+ }
337
+ .lib-xplat-button.primary.xplat-lightblue-300 {
338
+ background-color: #8DE3FF;
339
+ }
340
+ .lib-xplat-button.primary.xplat-lightblue-300:hover {
341
+ background-color: rgb(100.2, 216.9789473684, 255);
342
+ }
343
+ .lib-xplat-button.primary.xplat-lightblue-400 {
344
+ background-color: #57D0FF;
345
+ }
346
+ .lib-xplat-button.primary.xplat-lightblue-400:hover {
347
+ background-color: rgb(46.2, 196.5857142857, 255);
348
+ }
349
+ .lib-xplat-button.primary.xplat-lightblue-500 {
350
+ background-color: #30B6FF;
351
+ }
352
+ .lib-xplat-button.primary.xplat-lightblue-500:hover {
353
+ background-color: rgb(7.2, 167.6115942029, 255);
354
+ }
355
+ .lib-xplat-button.primary.xplat-lightblue-600 {
356
+ background-color: #1999F7;
357
+ }
358
+ .lib-xplat-button.primary.xplat-lightblue-600:hover {
359
+ background-color: rgb(74.2857142857, 174.8571428571, 248.7142857143);
360
+ }
361
+ .lib-xplat-button.primary.xplat-lightblue-700 {
362
+ background-color: #1280E3;
363
+ }
364
+ .lib-xplat-button.primary.xplat-lightblue-700:hover {
365
+ background-color: rgb(56.7224489796, 152.8040816327, 239.2775510204);
366
+ }
367
+ .lib-xplat-button.primary.xplat-lightblue-800 {
368
+ background-color: #1566B8;
369
+ }
370
+ .lib-xplat-button.primary.xplat-lightblue-800:hover {
371
+ background-color: rgb(27.0195121951, 127.3804878049, 228.9804878049);
372
+ }
373
+ .lib-xplat-button.primary.xplat-lightblue-900 {
374
+ background-color: #175791;
375
+ }
376
+ .lib-xplat-button.primary.xplat-lightblue-900:hover {
377
+ background-color: rgb(29.9821428571, 113.4107142857, 189.0178571429);
378
+ }
379
+ .lib-xplat-button.primary.xplat-purple-50 {
380
+ background-color: #FBF6FE;
381
+ }
382
+ .lib-xplat-button.primary.xplat-purple-50:hover {
383
+ background-color: hsl(277.5, 80%, 106.0392156863%);
384
+ }
385
+ .lib-xplat-button.primary.xplat-purple-100 {
386
+ background-color: #F5EAFD;
387
+ }
388
+ .lib-xplat-button.primary.xplat-purple-100:hover {
389
+ background-color: hsl(274.7368421053, 82.6086956522%, 103.4901960784%);
390
+ }
391
+ .lib-xplat-button.primary.xplat-purple-200 {
392
+ background-color: #EDD8FC;
393
+ }
394
+ .lib-xplat-button.primary.xplat-purple-200:hover {
395
+ background-color: rgb(254.4857142857, 253.8857142857, 254.9142857143);
396
+ }
397
+ .lib-xplat-button.primary.xplat-purple-300 {
398
+ background-color: #E0BAF8;
399
+ }
400
+ .lib-xplat-button.primary.xplat-purple-300:hover {
401
+ background-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
402
+ }
403
+ .lib-xplat-button.primary.xplat-purple-400 {
404
+ background-color: #CD8DF3;
405
+ }
406
+ .lib-xplat-button.primary.xplat-purple-400:hover {
407
+ background-color: rgb(225.2380952381, 187.1428571429, 247.8571428571);
408
+ }
409
+ .lib-xplat-button.primary.xplat-purple-500 {
410
+ background-color: #B961EB;
411
+ }
412
+ .lib-xplat-button.primary.xplat-purple-500:hover {
413
+ background-color: rgb(205.0561797753, 142.2696629213, 240.7303370787);
414
+ }
415
+ .lib-xplat-button.primary.xplat-purple-600 {
416
+ background-color: #A541DC;
417
+ }
418
+ .lib-xplat-button.primary.xplat-purple-600:hover {
419
+ background-color: rgb(185.4, 108.0666666667, 227.9333333333);
420
+ }
421
+ .lib-xplat-button.primary.xplat-purple-700 {
422
+ background-color: #9230C5;
423
+ }
424
+ .lib-xplat-button.primary.xplat-purple-700:hover {
425
+ background-color: rgb(168.5265306122, 82.9265306122, 213.0734693878);
426
+ }
427
+ .lib-xplat-button.primary.xplat-purple-800 {
428
+ background-color: #782B9E;
429
+ }
430
+ .lib-xplat-button.primary.xplat-purple-800:hover {
431
+ background-color: rgb(150.447761194, 53.9104477612, 198.0895522388);
432
+ }
433
+ .lib-xplat-button.primary.xplat-purple-900 {
434
+ background-color: #62247F;
435
+ }
436
+ .lib-xplat-button.primary.xplat-purple-900:hover {
437
+ background-color: rgb(128.6625766871, 47.263803681, 166.736196319);
438
+ }
439
+ .lib-xplat-button.primary.xplat-pink-50 {
440
+ background-color: #FFF4FE;
441
+ }
442
+ .lib-xplat-button.primary.xplat-pink-50:hover {
443
+ background-color: hsl(305.4545454545, 100%, 105.8431372549%);
444
+ }
445
+ .lib-xplat-button.primary.xplat-pink-100 {
446
+ background-color: #FFE7FD;
447
+ }
448
+ .lib-xplat-button.primary.xplat-pink-100:hover {
449
+ background-color: hsl(305, 100%, 103.2941176471%);
450
+ }
451
+ .lib-xplat-button.primary.xplat-pink-200 {
452
+ background-color: #FFCFFA;
453
+ }
454
+ .lib-xplat-button.primary.xplat-pink-200:hover {
455
+ background-color: rgb(255, 247.8, 254.25);
456
+ }
457
+ .lib-xplat-button.primary.xplat-pink-300 {
458
+ background-color: #FEA9F1;
459
+ }
460
+ .lib-xplat-button.primary.xplat-pink-300:hover {
461
+ background-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
462
+ }
463
+ .lib-xplat-button.primary.xplat-pink-400 {
464
+ background-color: #FD75E7;
465
+ }
466
+ .lib-xplat-button.primary.xplat-pink-400:hover {
467
+ background-color: rgb(253.7285714286, 167.2714285714, 239.7428571429);
468
+ }
469
+ .lib-xplat-button.primary.xplat-pink-500 {
470
+ background-color: #F553DA;
471
+ }
472
+ .lib-xplat-button.primary.xplat-pink-500:hover {
473
+ background-color: rgb(247.8021978022, 131.1978021978, 228.3681318681);
474
+ }
475
+ .lib-xplat-button.primary.xplat-pink-600 {
476
+ background-color: #D821B6;
477
+ }
478
+ .lib-xplat-button.primary.xplat-pink-600:hover {
479
+ background-color: rgb(227.1686746988, 72.8313253012, 198.4939759036);
480
+ }
481
+ .lib-xplat-button.primary.xplat-pink-700 {
482
+ background-color: #B31892;
483
+ }
484
+ .lib-xplat-button.primary.xplat-pink-700:hover {
485
+ background-color: rgb(223.9704433498, 30.0295566502, 182.6798029557);
486
+ }
487
+ .lib-xplat-button.primary.xplat-pink-800 {
488
+ background-color: #921676;
489
+ }
490
+ .lib-xplat-button.primary.xplat-pink-800:hover {
491
+ background-color: rgb(190.3214285714, 28.6785714286, 153.8214285714);
492
+ }
493
+ .lib-xplat-button.primary.xplat-pink-900 {
494
+ background-color: #781761;
495
+ }
496
+ .lib-xplat-button.primary.xplat-pink-900:hover {
497
+ background-color: rgb(162.7972027972, 31.2027972028, 131.5944055944);
498
+ }
499
+ .lib-xplat-button.primary.xplat-neutral-50 {
500
+ background-color: #FAFAFA;
501
+ }
502
+ .lib-xplat-button.primary.xplat-neutral-50:hover {
503
+ background-color: hsl(0, 0%, 106.0392156863%);
504
+ }
505
+ .lib-xplat-button.primary.xplat-neutral-100 {
506
+ background-color: #F5F5F5;
507
+ }
508
+ .lib-xplat-button.primary.xplat-neutral-100:hover {
509
+ background-color: hsl(0, 0%, 104.0784313725%);
510
+ }
511
+ .lib-xplat-button.primary.xplat-neutral-200 {
512
+ background-color: #E5E5E5;
513
+ }
514
+ .lib-xplat-button.primary.xplat-neutral-200:hover {
515
+ background-color: rgb(249.4, 249.4, 249.4);
516
+ }
517
+ .lib-xplat-button.primary.xplat-neutral-300 {
518
+ background-color: #D4D4D4;
519
+ }
520
+ .lib-xplat-button.primary.xplat-neutral-300:hover {
521
+ background-color: rgb(191.6, 191.6, 191.6);
522
+ }
523
+ .lib-xplat-button.primary.xplat-neutral-400 {
524
+ background-color: #A1A1A1;
525
+ }
526
+ .lib-xplat-button.primary.xplat-neutral-400:hover {
527
+ background-color: rgb(186.5, 186.5, 186.5);
528
+ }
529
+ .lib-xplat-button.primary.xplat-neutral-500 {
530
+ background-color: #737373;
531
+ }
532
+ .lib-xplat-button.primary.xplat-neutral-500:hover {
533
+ background-color: rgb(140.5, 140.5, 140.5);
534
+ }
535
+ .lib-xplat-button.primary.xplat-neutral-600 {
536
+ background-color: #525252;
537
+ }
538
+ .lib-xplat-button.primary.xplat-neutral-600:hover {
539
+ background-color: rgb(107.5, 107.5, 107.5);
540
+ }
541
+ .lib-xplat-button.primary.xplat-neutral-700 {
542
+ background-color: #404040;
543
+ }
544
+ .lib-xplat-button.primary.xplat-neutral-700:hover {
545
+ background-color: rgb(89.5, 89.5, 89.5);
546
+ }
547
+ .lib-xplat-button.primary.xplat-neutral-800 {
548
+ background-color: #262626;
549
+ }
550
+ .lib-xplat-button.primary.xplat-neutral-800:hover {
551
+ background-color: rgb(83.9, 83.9, 83.9);
552
+ }
553
+ .lib-xplat-button.primary.xplat-neutral-900 {
554
+ background-color: #171717;
555
+ }
556
+ .lib-xplat-button.primary.xplat-neutral-900:hover {
557
+ background-color: rgb(68.9, 68.9, 68.9);
558
+ }
559
+ .lib-xplat-button.primary.xplat-black {
560
+ background-color: #000000;
561
+ }
562
+ .lib-xplat-button.primary.xplat-black:hover {
563
+ background-color: rgb(45.9, 45.9, 45.9);
564
+ }
565
+ .lib-xplat-button.primary.xplat-white {
566
+ background-color: #FFFFFF;
567
+ }
568
+ .lib-xplat-button.primary.xplat-white:hover {
569
+ background-color: hsl(0, 0%, 108%);
570
+ }
571
+ .lib-xplat-button.primary.test-default {
572
+ background-color: #ffffff;
573
+ }
574
+ .lib-xplat-button.primary.test-default:hover {
575
+ background-color: hsl(0, 0%, 108%);
576
+ }
577
+ .lib-xplat-button.secondary {
578
+ background-color: #FFFFFF;
579
+ border: 1px solid;
580
+ }
581
+ .lib-xplat-button.secondary.xplat-red-50 {
582
+ color: #FFF0F0;
583
+ border-color: #FFF0F0;
584
+ }
585
+ .lib-xplat-button.secondary.xplat-red-50:hover {
586
+ background-color: rgb(255, 253.2, 253.2);
587
+ }
588
+ .lib-xplat-button.secondary.xplat-red-100 {
589
+ color: #FFDDDE;
590
+ border-color: #FFDDDE;
591
+ }
592
+ .lib-xplat-button.secondary.xplat-red-100:hover {
593
+ background-color: rgb(255, 250.92, 251.04);
594
+ }
595
+ .lib-xplat-button.secondary.xplat-red-200 {
596
+ color: #FFC1C2;
597
+ border-color: #FFC1C2;
598
+ }
599
+ .lib-xplat-button.secondary.xplat-red-200:hover {
600
+ background-color: rgb(255, 247.56, 247.68);
601
+ }
602
+ .lib-xplat-button.secondary.xplat-red-300 {
603
+ color: #FF9698;
604
+ border-color: #FF9698;
605
+ }
606
+ .lib-xplat-button.secondary.xplat-red-300:hover {
607
+ background-color: rgb(255, 242.4, 242.64);
608
+ }
609
+ .lib-xplat-button.secondary.xplat-red-400 {
610
+ color: #FF5A5D;
611
+ border-color: #FF5A5D;
612
+ }
613
+ .lib-xplat-button.secondary.xplat-red-400:hover {
614
+ background-color: rgb(255, 235.2, 235.56);
615
+ }
616
+ .lib-xplat-button.secondary.xplat-red-500 {
617
+ color: #FF272B;
618
+ border-color: #FF272B;
619
+ }
620
+ .lib-xplat-button.secondary.xplat-red-500:hover {
621
+ background-color: rgb(255, 229.08, 229.56);
622
+ }
623
+ .lib-xplat-button.secondary.xplat-red-600 {
624
+ color: #F80409;
625
+ border-color: #F80409;
626
+ }
627
+ .lib-xplat-button.secondary.xplat-red-600:hover {
628
+ background-color: rgb(254.16, 224.88, 225.48);
629
+ }
630
+ .lib-xplat-button.secondary.xplat-red-700 {
631
+ color: #D40105;
632
+ border-color: #D40105;
633
+ }
634
+ .lib-xplat-button.secondary.xplat-red-700:hover {
635
+ background-color: rgb(249.84, 224.52, 225);
636
+ }
637
+ .lib-xplat-button.secondary.xplat-red-800 {
638
+ color: #AE0609;
639
+ border-color: #AE0609;
640
+ }
641
+ .lib-xplat-button.secondary.xplat-red-800:hover {
642
+ background-color: rgb(245.28, 225.12, 225.48);
643
+ }
644
+ .lib-xplat-button.secondary.xplat-red-900 {
645
+ color: #900C0F;
646
+ border-color: #900C0F;
647
+ }
648
+ .lib-xplat-button.secondary.xplat-red-900:hover {
649
+ background-color: rgb(241.68, 225.84, 226.2);
650
+ }
651
+ .lib-xplat-button.secondary.xplat-green-50 {
652
+ color: #E5F6EA;
653
+ border-color: #E5F6EA;
654
+ }
655
+ .lib-xplat-button.secondary.xplat-green-50:hover {
656
+ background-color: rgb(251.88, 253.92, 252.48);
657
+ }
658
+ .lib-xplat-button.secondary.xplat-green-100 {
659
+ color: #C1E7CC;
660
+ border-color: #C1E7CC;
661
+ }
662
+ .lib-xplat-button.secondary.xplat-green-100:hover {
663
+ background-color: rgb(247.56, 252.12, 248.88);
664
+ }
665
+ .lib-xplat-button.secondary.xplat-green-200 {
666
+ color: #98D8AC;
667
+ border-color: #98D8AC;
668
+ }
669
+ .lib-xplat-button.secondary.xplat-green-200:hover {
670
+ background-color: rgb(242.64, 250.32, 245.04);
671
+ }
672
+ .lib-xplat-button.secondary.xplat-green-300 {
673
+ color: #6CCA8B;
674
+ border-color: #6CCA8B;
675
+ }
676
+ .lib-xplat-button.secondary.xplat-green-300:hover {
677
+ background-color: rgb(237.36, 248.64, 241.08);
678
+ }
679
+ .lib-xplat-button.secondary.xplat-green-400 {
680
+ color: #47BE72;
681
+ border-color: #47BE72;
682
+ }
683
+ .lib-xplat-button.secondary.xplat-green-400:hover {
684
+ background-color: rgb(232.92, 247.2, 238.08);
685
+ }
686
+ .lib-xplat-button.secondary.xplat-green-500 {
687
+ color: #10B259;
688
+ border-color: #10B259;
689
+ }
690
+ .lib-xplat-button.secondary.xplat-green-500:hover {
691
+ background-color: rgb(226.32, 245.76, 235.08);
692
+ }
693
+ .lib-xplat-button.secondary.xplat-green-600 {
694
+ color: #00A34F;
695
+ border-color: #00A34F;
696
+ }
697
+ .lib-xplat-button.secondary.xplat-green-600:hover {
698
+ background-color: rgb(224.4, 243.96, 233.88);
699
+ }
700
+ .lib-xplat-button.secondary.xplat-green-700 {
701
+ color: #009143;
702
+ border-color: #009143;
703
+ }
704
+ .lib-xplat-button.secondary.xplat-green-700:hover {
705
+ background-color: rgb(224.4, 241.8, 232.44);
706
+ }
707
+ .lib-xplat-button.secondary.xplat-green-800 {
708
+ color: #007F38;
709
+ border-color: #007F38;
710
+ }
711
+ .lib-xplat-button.secondary.xplat-green-800:hover {
712
+ background-color: rgb(224.4, 239.64, 231.12);
713
+ }
714
+ .lib-xplat-button.secondary.xplat-green-900 {
715
+ color: #006024;
716
+ border-color: #006024;
717
+ }
718
+ .lib-xplat-button.secondary.xplat-green-900:hover {
719
+ background-color: rgb(224.4, 235.92, 228.72);
720
+ }
721
+ .lib-xplat-button.secondary.xplat-orange-50 {
722
+ color: #FFF8EC;
723
+ border-color: #FFF8EC;
724
+ }
725
+ .lib-xplat-button.secondary.xplat-orange-50:hover {
726
+ background-color: rgb(255, 254.16, 252.72);
727
+ }
728
+ .lib-xplat-button.secondary.xplat-orange-100 {
729
+ color: #FFF0D3;
730
+ border-color: #FFF0D3;
731
+ }
732
+ .lib-xplat-button.secondary.xplat-orange-100:hover {
733
+ background-color: rgb(255, 253.2, 249.72);
734
+ }
735
+ .lib-xplat-button.secondary.xplat-orange-200 {
736
+ color: #FFDDA5;
737
+ border-color: #FFDDA5;
738
+ }
739
+ .lib-xplat-button.secondary.xplat-orange-200:hover {
740
+ background-color: rgb(255, 250.92, 244.2);
741
+ }
742
+ .lib-xplat-button.secondary.xplat-orange-300 {
743
+ color: #FFC46D;
744
+ border-color: #FFC46D;
745
+ }
746
+ .lib-xplat-button.secondary.xplat-orange-300:hover {
747
+ background-color: rgb(255, 247.92, 237.48);
748
+ }
749
+ .lib-xplat-button.secondary.xplat-orange-400 {
750
+ color: #FF9F32;
751
+ border-color: #FF9F32;
752
+ }
753
+ .lib-xplat-button.secondary.xplat-orange-400:hover {
754
+ background-color: rgb(255, 243.48, 230.4);
755
+ }
756
+ .lib-xplat-button.secondary.xplat-orange-500 {
757
+ color: #FF820A;
758
+ border-color: #FF820A;
759
+ }
760
+ .lib-xplat-button.secondary.xplat-orange-500:hover {
761
+ background-color: rgb(255, 240, 225.6);
762
+ }
763
+ .lib-xplat-button.secondary.xplat-orange-600 {
764
+ color: #FF6900;
765
+ border-color: #FF6900;
766
+ }
767
+ .lib-xplat-button.secondary.xplat-orange-600:hover {
768
+ background-color: rgb(255, 237, 224.4);
769
+ }
770
+ .lib-xplat-button.secondary.xplat-orange-700 {
771
+ color: #CC4B02;
772
+ border-color: #CC4B02;
773
+ }
774
+ .lib-xplat-button.secondary.xplat-orange-700:hover {
775
+ background-color: rgb(248.88, 233.4, 224.64);
776
+ }
777
+ .lib-xplat-button.secondary.xplat-orange-800 {
778
+ color: #A13A0B;
779
+ border-color: #A13A0B;
780
+ }
781
+ .lib-xplat-button.secondary.xplat-orange-800:hover {
782
+ background-color: rgb(243.72, 231.36, 225.72);
783
+ }
784
+ .lib-xplat-button.secondary.xplat-orange-900 {
785
+ color: #82320C;
786
+ border-color: #82320C;
787
+ }
788
+ .lib-xplat-button.secondary.xplat-orange-900:hover {
789
+ background-color: rgb(240, 230.4, 225.84);
790
+ }
791
+ .lib-xplat-button.secondary.xplat-yellow-50 {
792
+ color: #FFFDE7;
793
+ border-color: #FFFDE7;
794
+ }
795
+ .lib-xplat-button.secondary.xplat-yellow-50:hover {
796
+ background-color: rgb(255, 254.76, 252.12);
797
+ }
798
+ .lib-xplat-button.secondary.xplat-yellow-100 {
799
+ color: #FFFAC1;
800
+ border-color: #FFFAC1;
801
+ }
802
+ .lib-xplat-button.secondary.xplat-yellow-100:hover {
803
+ background-color: rgb(255, 254.4, 247.56);
804
+ }
805
+ .lib-xplat-button.secondary.xplat-yellow-200 {
806
+ color: #FFF186;
807
+ border-color: #FFF186;
808
+ }
809
+ .lib-xplat-button.secondary.xplat-yellow-200:hover {
810
+ background-color: rgb(255, 253.32, 240.48);
811
+ }
812
+ .lib-xplat-button.secondary.xplat-yellow-300 {
813
+ color: #FFE041;
814
+ border-color: #FFE041;
815
+ }
816
+ .lib-xplat-button.secondary.xplat-yellow-300:hover {
817
+ background-color: rgb(255, 251.28, 232.2);
818
+ }
819
+ .lib-xplat-button.secondary.xplat-yellow-400 {
820
+ color: #FFCC0D;
821
+ border-color: #FFCC0D;
822
+ }
823
+ .lib-xplat-button.secondary.xplat-yellow-400:hover {
824
+ background-color: rgb(255, 248.88, 225.96);
825
+ }
826
+ .lib-xplat-button.secondary.xplat-yellow-500 {
827
+ color: #F0B100;
828
+ border-color: #F0B100;
829
+ }
830
+ .lib-xplat-button.secondary.xplat-yellow-500:hover {
831
+ background-color: rgb(253.2, 245.64, 224.4);
832
+ }
833
+ .lib-xplat-button.secondary.xplat-yellow-600 {
834
+ color: #D18800;
835
+ border-color: #D18800;
836
+ }
837
+ .lib-xplat-button.secondary.xplat-yellow-600:hover {
838
+ background-color: rgb(249.48, 240.72, 224.4);
839
+ }
840
+ .lib-xplat-button.secondary.xplat-yellow-700 {
841
+ color: #A66002;
842
+ border-color: #A66002;
843
+ }
844
+ .lib-xplat-button.secondary.xplat-yellow-700:hover {
845
+ background-color: rgb(244.32, 235.92, 224.64);
846
+ }
847
+ .lib-xplat-button.secondary.xplat-yellow-800 {
848
+ color: #894B0A;
849
+ border-color: #894B0A;
850
+ }
851
+ .lib-xplat-button.secondary.xplat-yellow-800:hover {
852
+ background-color: rgb(240.84, 233.4, 225.6);
853
+ }
854
+ .lib-xplat-button.secondary.xplat-yellow-900 {
855
+ color: #743D0F;
856
+ border-color: #743D0F;
857
+ }
858
+ .lib-xplat-button.secondary.xplat-yellow-900:hover {
859
+ background-color: rgb(238.32, 231.72, 226.2);
860
+ }
861
+ .lib-xplat-button.secondary.xplat-blue-50 {
862
+ color: #F1F4FD;
863
+ border-color: #F1F4FD;
864
+ }
865
+ .lib-xplat-button.secondary.xplat-blue-50:hover {
866
+ background-color: rgb(253.32, 253.68, 254.76);
867
+ }
868
+ .lib-xplat-button.secondary.xplat-blue-100 {
869
+ color: #DFE7FA;
870
+ border-color: #DFE7FA;
871
+ }
872
+ .lib-xplat-button.secondary.xplat-blue-100:hover {
873
+ background-color: rgb(251.16, 252.12, 254.4);
874
+ }
875
+ .lib-xplat-button.secondary.xplat-blue-200 {
876
+ color: #C5D4F8;
877
+ border-color: #C5D4F8;
878
+ }
879
+ .lib-xplat-button.secondary.xplat-blue-200:hover {
880
+ background-color: rgb(248.04, 249.84, 254.16);
881
+ }
882
+ .lib-xplat-button.secondary.xplat-blue-300 {
883
+ color: #9EB8F2;
884
+ border-color: #9EB8F2;
885
+ }
886
+ .lib-xplat-button.secondary.xplat-blue-300:hover {
887
+ background-color: rgb(243.36, 246.48, 253.44);
888
+ }
889
+ .lib-xplat-button.secondary.xplat-blue-400 {
890
+ color: #7093EA;
891
+ border-color: #7093EA;
892
+ }
893
+ .lib-xplat-button.secondary.xplat-blue-400:hover {
894
+ background-color: rgb(237.84, 242.04, 252.48);
895
+ }
896
+ .lib-xplat-button.secondary.xplat-blue-500 {
897
+ color: #4D6DE3;
898
+ border-color: #4D6DE3;
899
+ }
900
+ .lib-xplat-button.secondary.xplat-blue-500:hover {
901
+ background-color: rgb(233.64, 237.48, 251.64);
902
+ }
903
+ .lib-xplat-button.secondary.xplat-blue-600 {
904
+ color: #3950D7;
905
+ border-color: #3950D7;
906
+ }
907
+ .lib-xplat-button.secondary.xplat-blue-600:hover {
908
+ background-color: rgb(231.24, 234, 250.2);
909
+ }
910
+ .lib-xplat-button.secondary.xplat-blue-700 {
911
+ color: #303EC5;
912
+ border-color: #303EC5;
913
+ }
914
+ .lib-xplat-button.secondary.xplat-blue-700:hover {
915
+ background-color: rgb(230.16, 231.84, 248.04);
916
+ }
917
+ .lib-xplat-button.secondary.xplat-blue-800 {
918
+ color: #2D35A0;
919
+ border-color: #2D35A0;
920
+ }
921
+ .lib-xplat-button.secondary.xplat-blue-800:hover {
922
+ background-color: rgb(229.8, 230.76, 243.6);
923
+ }
924
+ .lib-xplat-button.secondary.xplat-blue-900 {
925
+ color: #29317F;
926
+ border-color: #29317F;
927
+ }
928
+ .lib-xplat-button.secondary.xplat-blue-900:hover {
929
+ background-color: rgb(229.32, 230.28, 239.64);
930
+ }
931
+ .lib-xplat-button.secondary.xplat-lightblue-50 {
932
+ color: #EEFAFF;
933
+ border-color: #EEFAFF;
934
+ }
935
+ .lib-xplat-button.secondary.xplat-lightblue-50:hover {
936
+ background-color: rgb(252.96, 254.4, 255);
937
+ }
938
+ .lib-xplat-button.secondary.xplat-lightblue-100 {
939
+ color: #D9F4FF;
940
+ border-color: #D9F4FF;
941
+ }
942
+ .lib-xplat-button.secondary.xplat-lightblue-100:hover {
943
+ background-color: rgb(250.44, 253.68, 255);
944
+ }
945
+ .lib-xplat-button.secondary.xplat-lightblue-200 {
946
+ color: #BBEDFF;
947
+ border-color: #BBEDFF;
948
+ }
949
+ .lib-xplat-button.secondary.xplat-lightblue-200:hover {
950
+ background-color: rgb(246.84, 252.84, 255);
951
+ }
952
+ .lib-xplat-button.secondary.xplat-lightblue-300 {
953
+ color: #8DE3FF;
954
+ border-color: #8DE3FF;
955
+ }
956
+ .lib-xplat-button.secondary.xplat-lightblue-300:hover {
957
+ background-color: rgb(241.32, 251.64, 255);
958
+ }
959
+ .lib-xplat-button.secondary.xplat-lightblue-400 {
960
+ color: #57D0FF;
961
+ border-color: #57D0FF;
962
+ }
963
+ .lib-xplat-button.secondary.xplat-lightblue-400:hover {
964
+ background-color: rgb(234.84, 249.36, 255);
965
+ }
966
+ .lib-xplat-button.secondary.xplat-lightblue-500 {
967
+ color: #30B6FF;
968
+ border-color: #30B6FF;
969
+ }
970
+ .lib-xplat-button.secondary.xplat-lightblue-500:hover {
971
+ background-color: rgb(230.16, 246.24, 255);
972
+ }
973
+ .lib-xplat-button.secondary.xplat-lightblue-600 {
974
+ color: #1999F7;
975
+ border-color: #1999F7;
976
+ }
977
+ .lib-xplat-button.secondary.xplat-lightblue-600:hover {
978
+ background-color: rgb(227.4, 242.76, 254.04);
979
+ }
980
+ .lib-xplat-button.secondary.xplat-lightblue-700 {
981
+ color: #1280E3;
982
+ border-color: #1280E3;
983
+ }
984
+ .lib-xplat-button.secondary.xplat-lightblue-700:hover {
985
+ background-color: rgb(226.56, 239.76, 251.64);
986
+ }
987
+ .lib-xplat-button.secondary.xplat-lightblue-800 {
988
+ color: #1566B8;
989
+ border-color: #1566B8;
990
+ }
991
+ .lib-xplat-button.secondary.xplat-lightblue-800:hover {
992
+ background-color: rgb(226.92, 236.64, 246.48);
993
+ }
994
+ .lib-xplat-button.secondary.xplat-lightblue-900 {
995
+ color: #175791;
996
+ border-color: #175791;
997
+ }
998
+ .lib-xplat-button.secondary.xplat-lightblue-900:hover {
999
+ background-color: rgb(227.16, 234.84, 241.8);
1000
+ }
1001
+ .lib-xplat-button.secondary.xplat-purple-50 {
1002
+ color: #FBF6FE;
1003
+ border-color: #FBF6FE;
1004
+ }
1005
+ .lib-xplat-button.secondary.xplat-purple-50:hover {
1006
+ background-color: rgb(254.52, 253.92, 254.88);
1007
+ }
1008
+ .lib-xplat-button.secondary.xplat-purple-100 {
1009
+ color: #F5EAFD;
1010
+ border-color: #F5EAFD;
1011
+ }
1012
+ .lib-xplat-button.secondary.xplat-purple-100:hover {
1013
+ background-color: rgb(253.8, 252.48, 254.76);
1014
+ }
1015
+ .lib-xplat-button.secondary.xplat-purple-200 {
1016
+ color: #EDD8FC;
1017
+ border-color: #EDD8FC;
1018
+ }
1019
+ .lib-xplat-button.secondary.xplat-purple-200:hover {
1020
+ background-color: rgb(252.84, 250.32, 254.64);
1021
+ }
1022
+ .lib-xplat-button.secondary.xplat-purple-300 {
1023
+ color: #E0BAF8;
1024
+ border-color: #E0BAF8;
1025
+ }
1026
+ .lib-xplat-button.secondary.xplat-purple-300:hover {
1027
+ background-color: rgb(251.28, 246.72, 254.16);
1028
+ }
1029
+ .lib-xplat-button.secondary.xplat-purple-400 {
1030
+ color: #CD8DF3;
1031
+ border-color: #CD8DF3;
1032
+ }
1033
+ .lib-xplat-button.secondary.xplat-purple-400:hover {
1034
+ background-color: rgb(249, 241.32, 253.56);
1035
+ }
1036
+ .lib-xplat-button.secondary.xplat-purple-500 {
1037
+ color: #B961EB;
1038
+ border-color: #B961EB;
1039
+ }
1040
+ .lib-xplat-button.secondary.xplat-purple-500:hover {
1041
+ background-color: rgb(246.6, 236.04, 252.6);
1042
+ }
1043
+ .lib-xplat-button.secondary.xplat-purple-600 {
1044
+ color: #A541DC;
1045
+ border-color: #A541DC;
1046
+ }
1047
+ .lib-xplat-button.secondary.xplat-purple-600:hover {
1048
+ background-color: rgb(244.2, 232.2, 250.8);
1049
+ }
1050
+ .lib-xplat-button.secondary.xplat-purple-700 {
1051
+ color: #9230C5;
1052
+ border-color: #9230C5;
1053
+ }
1054
+ .lib-xplat-button.secondary.xplat-purple-700:hover {
1055
+ background-color: rgb(241.92, 230.16, 248.04);
1056
+ }
1057
+ .lib-xplat-button.secondary.xplat-purple-800 {
1058
+ color: #782B9E;
1059
+ border-color: #782B9E;
1060
+ }
1061
+ .lib-xplat-button.secondary.xplat-purple-800:hover {
1062
+ background-color: rgb(238.8, 229.56, 243.36);
1063
+ }
1064
+ .lib-xplat-button.secondary.xplat-purple-900 {
1065
+ color: #62247F;
1066
+ border-color: #62247F;
1067
+ }
1068
+ .lib-xplat-button.secondary.xplat-purple-900:hover {
1069
+ background-color: rgb(236.16, 228.72, 239.64);
1070
+ }
1071
+ .lib-xplat-button.secondary.xplat-pink-50 {
1072
+ color: #FFF4FE;
1073
+ border-color: #FFF4FE;
1074
+ }
1075
+ .lib-xplat-button.secondary.xplat-pink-50:hover {
1076
+ background-color: rgb(255, 253.68, 254.88);
1077
+ }
1078
+ .lib-xplat-button.secondary.xplat-pink-100 {
1079
+ color: #FFE7FD;
1080
+ border-color: #FFE7FD;
1081
+ }
1082
+ .lib-xplat-button.secondary.xplat-pink-100:hover {
1083
+ background-color: rgb(255, 252.12, 254.76);
1084
+ }
1085
+ .lib-xplat-button.secondary.xplat-pink-200 {
1086
+ color: #FFCFFA;
1087
+ border-color: #FFCFFA;
1088
+ }
1089
+ .lib-xplat-button.secondary.xplat-pink-200:hover {
1090
+ background-color: rgb(255, 249.24, 254.4);
1091
+ }
1092
+ .lib-xplat-button.secondary.xplat-pink-300 {
1093
+ color: #FEA9F1;
1094
+ border-color: #FEA9F1;
1095
+ }
1096
+ .lib-xplat-button.secondary.xplat-pink-300:hover {
1097
+ background-color: rgb(254.88, 244.68, 253.32);
1098
+ }
1099
+ .lib-xplat-button.secondary.xplat-pink-400 {
1100
+ color: #FD75E7;
1101
+ border-color: #FD75E7;
1102
+ }
1103
+ .lib-xplat-button.secondary.xplat-pink-400:hover {
1104
+ background-color: rgb(254.76, 238.44, 252.12);
1105
+ }
1106
+ .lib-xplat-button.secondary.xplat-pink-500 {
1107
+ color: #F553DA;
1108
+ border-color: #F553DA;
1109
+ }
1110
+ .lib-xplat-button.secondary.xplat-pink-500:hover {
1111
+ background-color: rgb(253.8, 234.36, 250.56);
1112
+ }
1113
+ .lib-xplat-button.secondary.xplat-pink-600 {
1114
+ color: #D821B6;
1115
+ border-color: #D821B6;
1116
+ }
1117
+ .lib-xplat-button.secondary.xplat-pink-600:hover {
1118
+ background-color: rgb(250.32, 228.36, 246.24);
1119
+ }
1120
+ .lib-xplat-button.secondary.xplat-pink-700 {
1121
+ color: #B31892;
1122
+ border-color: #B31892;
1123
+ }
1124
+ .lib-xplat-button.secondary.xplat-pink-700:hover {
1125
+ background-color: rgb(245.88, 227.28, 241.92);
1126
+ }
1127
+ .lib-xplat-button.secondary.xplat-pink-800 {
1128
+ color: #921676;
1129
+ border-color: #921676;
1130
+ }
1131
+ .lib-xplat-button.secondary.xplat-pink-800:hover {
1132
+ background-color: rgb(241.92, 227.04, 238.56);
1133
+ }
1134
+ .lib-xplat-button.secondary.xplat-pink-900 {
1135
+ color: #781761;
1136
+ border-color: #781761;
1137
+ }
1138
+ .lib-xplat-button.secondary.xplat-pink-900:hover {
1139
+ background-color: rgb(238.8, 227.16, 236.04);
1140
+ }
1141
+ .lib-xplat-button.secondary.xplat-neutral-50 {
1142
+ color: #FAFAFA;
1143
+ border-color: #FAFAFA;
1144
+ }
1145
+ .lib-xplat-button.secondary.xplat-neutral-50:hover {
1146
+ background-color: rgb(254.4, 254.4, 254.4);
1147
+ }
1148
+ .lib-xplat-button.secondary.xplat-neutral-100 {
1149
+ color: #F5F5F5;
1150
+ border-color: #F5F5F5;
1151
+ }
1152
+ .lib-xplat-button.secondary.xplat-neutral-100:hover {
1153
+ background-color: rgb(253.8, 253.8, 253.8);
1154
+ }
1155
+ .lib-xplat-button.secondary.xplat-neutral-200 {
1156
+ color: #E5E5E5;
1157
+ border-color: #E5E5E5;
1158
+ }
1159
+ .lib-xplat-button.secondary.xplat-neutral-200:hover {
1160
+ background-color: rgb(251.88, 251.88, 251.88);
1161
+ }
1162
+ .lib-xplat-button.secondary.xplat-neutral-300 {
1163
+ color: #D4D4D4;
1164
+ border-color: #D4D4D4;
1165
+ }
1166
+ .lib-xplat-button.secondary.xplat-neutral-300:hover {
1167
+ background-color: rgb(249.84, 249.84, 249.84);
1168
+ }
1169
+ .lib-xplat-button.secondary.xplat-neutral-400 {
1170
+ color: #A1A1A1;
1171
+ border-color: #A1A1A1;
1172
+ }
1173
+ .lib-xplat-button.secondary.xplat-neutral-400:hover {
1174
+ background-color: rgb(243.72, 243.72, 243.72);
1175
+ }
1176
+ .lib-xplat-button.secondary.xplat-neutral-500 {
1177
+ color: #737373;
1178
+ border-color: #737373;
1179
+ }
1180
+ .lib-xplat-button.secondary.xplat-neutral-500:hover {
1181
+ background-color: rgb(238.2, 238.2, 238.2);
1182
+ }
1183
+ .lib-xplat-button.secondary.xplat-neutral-600 {
1184
+ color: #525252;
1185
+ border-color: #525252;
1186
+ }
1187
+ .lib-xplat-button.secondary.xplat-neutral-600:hover {
1188
+ background-color: rgb(234.24, 234.24, 234.24);
1189
+ }
1190
+ .lib-xplat-button.secondary.xplat-neutral-700 {
1191
+ color: #404040;
1192
+ border-color: #404040;
1193
+ }
1194
+ .lib-xplat-button.secondary.xplat-neutral-700:hover {
1195
+ background-color: rgb(232.08, 232.08, 232.08);
1196
+ }
1197
+ .lib-xplat-button.secondary.xplat-neutral-800 {
1198
+ color: #262626;
1199
+ border-color: #262626;
1200
+ }
1201
+ .lib-xplat-button.secondary.xplat-neutral-800:hover {
1202
+ background-color: rgb(228.96, 228.96, 228.96);
1203
+ }
1204
+ .lib-xplat-button.secondary.xplat-neutral-900 {
1205
+ color: #171717;
1206
+ border-color: #171717;
1207
+ }
1208
+ .lib-xplat-button.secondary.xplat-neutral-900:hover {
1209
+ background-color: rgb(227.16, 227.16, 227.16);
1210
+ }
1211
+ .lib-xplat-button.secondary.xplat-black {
1212
+ color: #000000;
1213
+ border-color: #000000;
1214
+ }
1215
+ .lib-xplat-button.secondary.xplat-black:hover {
1216
+ background-color: rgb(224.4, 224.4, 224.4);
1217
+ }
1218
+ .lib-xplat-button.secondary.xplat-white {
1219
+ color: #FFFFFF;
1220
+ border-color: #FFFFFF;
1221
+ }
1222
+ .lib-xplat-button.secondary.xplat-white:hover {
1223
+ background-color: white;
1224
+ }
1225
+ .lib-xplat-button.secondary.test-default {
1226
+ color: #ffffff;
1227
+ border-color: #ffffff;
1228
+ }
1229
+ .lib-xplat-button.secondary.test-default:hover {
1230
+ background-color: white;
1231
+ }