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