UNPKG

11.6 kBCSSView Raw
1
2:root {
3 /* Darker background for primary actions or highlights */
4 --color-background-primary-darker: #030b5d;
5 /* Lighter background for primary actions or highlights */
6 --color-background-primary-lighter: #cce4ff;
7 /* Darker background for destructive actions or highlights */
8 --color-background-destructive-darker: #4a0b0b;
9 /* Lighter background for destructive actions or highlights */
10 --color-background-destructive-lighter: #fccfcf;
11 /* Warning background color */
12 --color-background-warning: #f47c22;
13 /* Lightest error background color */
14 --color-background-error-lightest: #feecec;
15 /* Lightest neutral background color */
16 --color-background-neutral-lightest: #ebf4ff;
17 /* Background for destructive actions or highlights */
18 --color-background-destructive: #d61f1f;
19 /* Background for primary actions or highlights */
20 --color-background-primary: #0263e0;
21 /* Success background color */
22 --color-background-success: #14b053;
23 /* Background color for alternative striped rows */
24 --color-background-row-striped: #f4f4f6;
25 /* Lightest success background color */
26 --color-background-success-lightest: #edfdf3;
27 /* Lightest background for destructive actions or highlights */
28 --color-background-destructive-lightest: #feecec;
29 /* Lightest background for primary actions or highlights */
30 --color-background-primary-lightest: #ebf4ff;
31 /* Primary brand background, accessible with inverse text */
32 --color-background-brand: #233659;
33 /* Error background color */
34 --color-background-error: #d61f1f;
35 /* Dark background for destructive actions or highlights */
36 --color-background-destructive-dark: #750c0c;
37 /* Light background for destructive actions or highlights */
38 --color-background-destructive-light: #f58a8a;
39 /* Dark background for primary actions or highlights */
40 --color-background-primary-dark: #001489;
41 /* Light background for primary actions or highlights */
42 --color-background-primary-light: #66b3ff;
43 /* Lightest warning background color */
44 --color-background-warning-lightest: #fef5ee;
45 /* Background color of the main page body */
46 --color-background-body: #ffffff;
47 /* Default background color for any container */
48 --color-background: #f4f4f6;
49 /* Highlight brand background, accessible with black text */
50 --color-background-brand-highlight: #f22f46;
51 /* Inverse background color for any container */
52 --color-background-inverse: #1f304c;
53 /* Destructive focus border color */
54 --color-border-destructive-lighter: #fccfcf;
55 /* Lighter primary border color */
56 --color-border-primary-lighter: #cce4ff;
57 /* Input hover border color */
58 --color-border-input-hover: #0263e0;
59 /* Darker primary border color */
60 --color-border-primary-darker: #030b5d;
61 /* Warning border color */
62 --color-border-warning: #f47c22;
63 /* Destructive hover border color */
64 --color-border-destructive-darker: #4a0b0b;
65 /* Destructive border color */
66 --color-border-destructive: #d61f1f;
67 /* Primary border color */
68 --color-border-primary: #0263e0;
69 /* Success border color */
70 --color-border-success: #14b053;
71 /* Lightest error border color */
72 --color-border-error-lightest: #feecec;
73 /* Dark border color */
74 --color-border-dark: #606b85;
75 /* Light warning border color */
76 --color-border-warning-light: #ffb37a;
77 /* Lightest success border color */
78 --color-border-success-lightest: #edfdf3;
79 /* Error border color */
80 --color-border-error: #d61f1f;
81 /* Input border color */
82 --color-border-input: #606b85;
83 /* Destructive focus border color */
84 --color-border-destructive-light: #f58a8a;
85 /* Light primary border color */
86 --color-border-primary-light: #66b3ff;
87 /* Default border color */
88 --color-border: #aeb2c1;
89 /* Lightest warning border color */
90 --color-border-warning-lightest: #fef5ee;
91 /* Dark primary border color */
92 --color-border-primary-dark: #001489;
93 /* Destructive focus border color */
94 --color-border-destructive-dark: #750c0c;
95 /* Light neutral border color */
96 --color-border-neutral-light: #8891aa;
97 /* Light error border color */
98 --color-border-error-light: #f58a8a;
99 /* Input focus border color */
100 --color-border-input-focus: #0263e0;
101 /* Light border color */
102 --color-border-light: #e1e3ea;
103 /* Border radius reset */
104 --border-radius-0: 0;
105 /* Small border radius */
106 --border-radius-10: 3px;
107 /* Large border radius */
108 --border-radius-20: 4px;
109 /* Larger border radius */
110 --border-radius-30: 8px;
111 /* Circular border radius */
112 --border-radius-circle: 50%;
113 /* Border width reset */
114 --border-width-0: 0;
115 /* Small border width */
116 --border-width-10: 1px;
117 /* Large border width */
118 --border-width-20: 2px;
119 /* Shadow for cards. */
120 --shadow-card: 0 2px 4px 0 rgba(18, 28, 45, 0.3);
121 /* Shadow for focus ring on interactive elements */
122 --shadow-focus: 0 0 0 4px rgba(2, 99, 224, 0.8);
123 --font-family-text: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
124 --font-family-code: 'Fira Mono', 'Courier New', Courier, monospace;
125 /* Constant typography token for font size 110 */
126 --font-size-110: 3rem;
127 /* Constant typography token for font size 100 */
128 --font-size-100: 2.5rem;
129 /* Constant typography token for font size 90 */
130 --font-size-90: 2rem;
131 /* Constant typography token for font size 80 */
132 --font-size-80: 1.75rem;
133 /* Constant typography token for font size 70 */
134 --font-size-70: 1.5rem;
135 /* Constant typography token for font size 60 */
136 --font-size-60: 1.25rem;
137 /* Constant typography token for font size 50 */
138 --font-size-50: 1.125rem;
139 /* Constant typography token for font size 40 */
140 --font-size-40: 1rem;
141 /* Constant typography token for font size 30 */
142 --font-size-30: 0.875rem;
143 /* Constant typography token for font size 20 */
144 --font-size-20: 0.75rem;
145 /* Constant typography token for font size 10 */
146 --font-size-10: 0.625rem;
147 /* Font weight for light weight */
148 --font-weight-light: 300;
149 /* Font weight for normal weight */
150 --font-weight-normal: 400;
151 /* Font weight for medium weight */
152 --font-weight-medium: 500;
153 /* Font weight for semibold weight */
154 --font-weight-semibold: 600;
155 /* Font weight for bold weight */
156 --font-weight-bold: 700;
157 /* Constant line-height token for font size 110 */
158 --line-height-110: 3.75rem;
159 /* Constant line-height token for font size 90 */
160 --line-height-90: 2.5rem;
161 /* Constant line-height token for font size 100 */
162 --line-height-100: 3.25rem;
163 /* Constant line-height token for font size 80 */
164 --line-height-80: 2.25rem;
165 /* Constant line-height token for font size 70 */
166 --line-height-70: 2rem;
167 /* Constant line-height token for font size 60 */
168 --line-height-60: 1.75rem;
169 /* Constant line-height token for font size 50 */
170 --line-height-50: 1.75rem;
171 /* Constant line-height token for font size 40 */
172 --line-height-40: 1.75rem;
173 /* Constant line-height token for font size 30 */
174 --line-height-30: 1.5rem;
175 /* Constant line-height token for font size 20 */
176 --line-height-20: 1.25rem;
177 /* Constant line-height token for font size 10 */
178 --line-height-10: 1rem;
179 /* Twilio brand red */
180 --color-brand-highlight: #f22f46;
181 /* Gray Color 0 */
182 --color-gray-0: #ffffff;
183 /* Gray Color 10 */
184 --color-gray-100: #121c2d;
185 /* Gray Color 9 */
186 --color-gray-90: #1f304c;
187 /* Gray Color 8 */
188 --color-gray-80: #394762;
189 /* Gray Color 7 */
190 --color-gray-70: #4b5671;
191 /* Gray Color 6 */
192 --color-gray-60: #606b85;
193 /* Gray Color 5 */
194 --color-gray-50: #8891aa;
195 /* Gray Color 4 */
196 --color-gray-40: #aeb2c1;
197 /* Default branding color */
198 --color-brand: #233659;
199 /* Gray Color 3 */
200 --color-gray-30: #cacdd8;
201 /* Gray Color 2 */
202 --color-gray-20: #e1e3ea;
203 /* Gray Color 1 */
204 --color-gray-10: #f4f4f6;
205 /* Generic sizing token scale for UI components. */
206 --size-90: 57.5rem;
207 /* Generic sizing token scale for UI components. */
208 --size-120: 77rem;
209 /* Generic sizing token scale for UI components. */
210 --size-80: 51rem;
211 /* Generic sizing token scale for UI components. */
212 --size-0: 0;
213 /* Generic sizing token scale for UI components. */
214 --size-110: 70.5rem;
215 /* Icon sizing token */
216 --size-icon-40: 2rem;
217 /* Generic sizing token scale for UI components. */
218 --size-70: 44.5rem;
219 /* Generic sizing token scale for UI components. */
220 --size-100: 64rem;
221 /* Icon sizing token */
222 --size-icon-30: 1.5rem;
223 /* Generic sizing token scale for UI components. */
224 --size-60: 38rem;
225 /* Icon sizing token */
226 --size-icon-20: 1.25rem;
227 /* Icon sizing token */
228 --size-icon-10: 1rem;
229 /* Generic sizing token scale for UI components. */
230 --size-50: 31.5rem;
231 /* Generic sizing token scale for UI components. */
232 --size-40: 25rem;
233 /* Generic sizing token scale for UI components. */
234 --size-30: 18.5rem;
235 /* Generic sizing token scale for UI components. */
236 --size-20: 12rem;
237 /* Generic sizing token scale for UI components. */
238 --size-10: 5.5rem;
239 --space-70: 1.5rem;
240 --space-60: 1.25rem;
241 --space-190: 4.5rem;
242 --space-50: 1rem;
243 --space-180: 4.25rem;
244 --space-40: 0.75rem;
245 --space-170: 4rem;
246 --space-30: 0.5rem;
247 --space-160: 3.75rem;
248 --space-20: 0.25rem;
249 --space-150: 3.5rem;
250 --space-10: 0.125rem;
251 --space-140: 3.25rem;
252 --space-130: 3rem;
253 --space-120: 2.75rem;
254 --space-110: 2.5rem;
255 --space-0: 0;
256 --space-100: 2.25rem;
257 --space-200: 4.75rem;
258 --space-90: 2rem;
259 --space-80: 1.75rem;
260 /* Darker shade of link text to be used in interactions */
261 --color-text-link-darker: #030b5d;
262 /* Destructive link text */
263 --color-text-link-destructive: #d61f1f;
264 /* Color for warning text. */
265 --color-text-warning: #f47c22;
266 /* Weak inverse text color for dark backgrounds. Must pass AA color contrast with color-background-inverse. */
267 --color-text-inverse-weak: #8891aa;
268 /* Darker shade of destructive link text to be used in interactions */
269 --color-text-link-destructive-darker: #750c0c;
270 /* Text color for success text. */
271 --color-text-success: #14b053;
272 /* Weak body text for visual hierarchy. */
273 --color-text-weak: #4b5671;
274 /* Light shade of destructive link text to be used in interactions */
275 --color-text-link-destructive-light: #f58a8a;
276 /* Default icon color. */
277 --color-text-icon: #4b5671;
278 /* Link text */
279 --color-text-link: #043cb5;
280 /* Dark error text for inputs and error misc */
281 --color-text-error-dark: #ad1111;
282 /* Error text for inputs and error misc */
283 --color-text-error: #d61f1f;
284 /* Dark shade of link text to be used in interactions */
285 --color-text-link-dark: #001489;
286 /* Text color used on any brand color */
287 --color-text-brand-inverse: #ffffff;
288 /* Body text color */
289 --color-text: #121c2d;
290 /* Twilio brand red, accessible on large text only. */
291 --color-text-brand-highlight: #f22f46;
292 /* Light shade of link text to be used in interactions */
293 --color-text-link-light: #66b3ff;
294 /* Inverse text color for dark backgrounds. Must pass AA color contrast with color-background-inverse. */
295 --color-text-inverse: #ffffff;
296 /* Input placeholder text. */
297 --color-text-placeholder: #4b5671;
298 /* Color for dark warning text. */
299 --color-text-warning-dark: #c35323;
300 /* Dark shade of destructive link text to be used in interactions */
301 --color-text-link-destructive-dark: #ad1111;
302 /* Text color for field labels. */
303 --color-text-label: #121c2d;
304 --z-index-0: 0;
305 --z-index-90: 90;
306 --z-index-80: 80;
307 --z-index-70: 70;
308 --z-index-60: 60;
309 --z-index-50: 50;
310 --z-index-40: 40;
311 --z-index-30: 30;
312 --z-index-20: 20;
313 --z-index-10: 10;
314}