@7shifts/sous-chef 2.17.0 → 2.17.2

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 (67) hide show
  1. package/dist/core/DataTable/DataTable.d.ts +1 -3
  2. package/dist/core/DataTable/types.d.ts +7 -3
  3. package/dist/core/DataTableEditableCell/DataTableEditableCell.d.ts +1 -2
  4. package/dist/core/DataTableRow/DataTableRow.d.ts +1 -1
  5. package/dist/core/Flex/Flex.d.ts +0 -2
  6. package/dist/core/Inline/Inline.d.ts +0 -1
  7. package/dist/core/Stack/Stack.d.ts +0 -1
  8. package/dist/forms/SelectField/CustomContainer/CustomContainer.d.ts +2 -6
  9. package/dist/forms/SelectField/CustomOption/CustomOption.d.ts +2 -5
  10. package/dist/index.css +546 -962
  11. package/dist/index.d.ts +2 -1
  12. package/dist/index.js +41 -57
  13. package/dist/index.js.map +1 -1
  14. package/dist/index.modern.js +41 -57
  15. package/dist/index.modern.js.map +1 -1
  16. package/dist/layout/Card/Card.d.ts +2 -2
  17. package/dist/layout/Flex/Flex.d.ts +21 -0
  18. package/dist/layout/Flex/index.d.ts +1 -0
  19. package/dist/layout/Flex/types.d.ts +4 -0
  20. package/dist/layout/Inline/Inline.d.ts +21 -0
  21. package/dist/layout/Inline/index.d.ts +1 -0
  22. package/dist/layout/Stack/Stack.d.ts +20 -0
  23. package/dist/layout/Stack/index.d.ts +1 -0
  24. package/dist/layout/index.d.ts +4 -1
  25. package/dist/lists/DataTable/DataTable.d.ts +31 -0
  26. package/dist/lists/DataTable/DataTableCell/DataTableCell.d.ts +7 -0
  27. package/dist/lists/DataTable/DataTableCell/index.d.ts +1 -0
  28. package/dist/lists/DataTable/DataTableContext.d.ts +11 -0
  29. package/dist/lists/DataTable/DataTableHeader.d.ts +9 -0
  30. package/dist/lists/DataTable/index.d.ts +1 -0
  31. package/dist/lists/DataTable/types.d.ts +34 -0
  32. package/dist/lists/DataTableEditableCell/DataTableEditableCell.d.ts +22 -0
  33. package/dist/lists/DataTableEditableCell/index.d.ts +1 -0
  34. package/dist/lists/DataTableRow/DataTableRow.d.ts +11 -0
  35. package/dist/lists/DataTableRow/DataTableRowActions/DataTableRowActions.d.ts +6 -0
  36. package/dist/lists/DataTableRow/DataTableRowActions/index.d.ts +1 -0
  37. package/dist/lists/DataTableRow/index.d.ts +1 -0
  38. package/dist/lists/ResourceTable/ResourceTable.d.ts +28 -0
  39. package/dist/lists/ResourceTable/ResourceTableContext.d.ts +8 -0
  40. package/dist/lists/ResourceTable/ResourceTableHeader.d.ts +12 -0
  41. package/dist/lists/ResourceTable/index.d.ts +1 -0
  42. package/dist/lists/ResourceTable/types.d.ts +26 -0
  43. package/dist/lists/ResourceTableRow/ResourceTableRow.d.ts +13 -0
  44. package/dist/lists/ResourceTableRow/index.d.ts +1 -0
  45. package/dist/lists/index.d.ts +9 -0
  46. package/package.json +1 -1
  47. package/dist/icons/IconArrowDown.d.ts +0 -11
  48. package/dist/icons/IconArrowLeft.d.ts +0 -9
  49. package/dist/icons/IconArrowRight.d.ts +0 -9
  50. package/dist/icons/IconArrowUp.d.ts +0 -9
  51. package/dist/icons/IconCalendar.d.ts +0 -9
  52. package/dist/icons/IconCheck.d.ts +0 -9
  53. package/dist/icons/IconChevronDown.d.ts +0 -9
  54. package/dist/icons/IconChevronUp.d.ts +0 -8
  55. package/dist/icons/IconClose.d.ts +0 -9
  56. package/dist/icons/IconComment.d.ts +0 -9
  57. package/dist/icons/IconDelete.d.ts +0 -9
  58. package/dist/icons/IconEdit.d.ts +0 -9
  59. package/dist/icons/IconExclaim.d.ts +0 -9
  60. package/dist/icons/IconEye.d.ts +0 -9
  61. package/dist/icons/IconEyeSlash.d.ts +0 -9
  62. package/dist/icons/IconLocation.d.ts +0 -9
  63. package/dist/icons/IconMinusCircle.d.ts +0 -9
  64. package/dist/icons/IconMore.d.ts +0 -9
  65. package/dist/icons/IconRemove.d.ts +0 -8
  66. package/dist/icons/IconUser.d.ts +0 -8
  67. package/dist/icons/IconUserPlus.d.ts +0 -9
package/dist/index.css CHANGED
@@ -1,14 +1,93 @@
1
- /*********************************
2
- For new colours, see _colors.scss.
3
- **********************************/
4
- /* stylelint-disable color-no-hex */
5
- /*
6
- These are the colour variables to be used around the webapp.
7
- The variables are set up to describe the color and number which represents the lightness of the color.
8
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
9
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
10
- Please ask a designer if you have questions about which colours to use.
11
- */
1
+ :root {
2
+ --color-white: #fff;
3
+ --color-white-rgb: 255, 255, 255;
4
+ --color-black: #000;
5
+ --color-black-rgb: 0, 0, 0;
6
+ --color-tangerine-100: #fef1ed;
7
+ --color-tangerine-100-rgb: 254, 241, 237;
8
+ --color-tangerine-200: #fdd5c8;
9
+ --color-tangerine-200-rgb: 253, 213, 200;
10
+ --color-tangerine-300: #fcab91;
11
+ --color-tangerine-300-rgb: 252, 171, 145;
12
+ --color-tangerine-400: #fb7448;
13
+ --color-tangerine-400-rgb: 251, 116, 72;
14
+ --color-tangerine-500: #e16840;
15
+ --color-tangerine-500-rgb: 225, 104, 64;
16
+ --color-tangerine-600: #96452b;
17
+ --color-tangerine-600-rgb: 150, 69, 43;
18
+ --color-eggplant-100: #f0f3fb;
19
+ --color-eggplant-100-rgb: 240, 243, 251;
20
+ --color-eggplant-200: #d3dbf4;
21
+ --color-eggplant-200-rgb: 211, 219, 244;
22
+ --color-eggplant-300: #a7b7ea;
23
+ --color-eggplant-300-rgb: 67, 183, 234;
24
+ --color-eggplant-400: #6d87dd;
25
+ --color-eggplant-400-rgb: 109, 135, 221;
26
+ --color-eggplant-500: #6179c6;
27
+ --color-eggplant-500-rgb: 97, 121, 198;
28
+ --color-eggplant-600: #415184;
29
+ --color-eggplant-600-rgb: 65, 81, 132;
30
+ --color-mint-100: #ecfaf8;
31
+ --color-mint-100-rgb: 236, 250, 248;
32
+ --color-mint-200: #c6f1eb;
33
+ --color-mint-200-rgb: 198, 241, 235;
34
+ --color-mint-300: #8de4d7;
35
+ --color-mint-300-rgb: 141, 228, 215;
36
+ --color-mint-400: #3abda9;
37
+ --color-mint-400-rgb: 58, 189, 169;
38
+ --color-mint-500: #35ac9a;
39
+ --color-mint-500-rgb: 53, 172, 154;
40
+ --color-mint-600: #277e71;
41
+ --color-mint-600-rgb: 39, 126, 113;
42
+ --color-radish-100: #fcf0f0;
43
+ --color-radish-100-rgb: 252, 240, 240;
44
+ --color-radish-200: #f7d1d1;
45
+ --color-radish-200-rgb: 247, 209, 209;
46
+ --color-radish-300: #f0a3a3;
47
+ --color-radish-300-rgb: 240, 163, 163;
48
+ --color-radish-400: #e76767;
49
+ --color-radish-400-rgb: 231, 103, 103;
50
+ --color-radish-500: #cf5c5c;
51
+ --color-radish-500-rgb: 207, 92, 92;
52
+ --color-radish-600: #8a3d3d;
53
+ --color-radish-600-rgb: 138, 61, 61;
54
+ --color-blueberry-100: #f6fdff;
55
+ --color-blueberry-100-rgb: 246, 253, 255;
56
+ --color-blueberry-200: #ceecf5;
57
+ --color-blueberry-200-rgb: 206, 236, 245;
58
+ --color-blueberry-300: #9cd9eb;
59
+ --color-blueberry-300-rgb: 156, 217, 235;
60
+ --color-blueberry-400: #5bc0de;
61
+ --color-blueberry-400-rgb: 91, 192, 222;
62
+ --color-blueberry-500: #51acc7;
63
+ --color-blueberry-500-rgb: 81, 172, 199;
64
+ --color-blueberry-600: #367385;
65
+ --color-blueberry-600-rgb: 54, 115, 133;
66
+ --color-banana-100: #fff9ed;
67
+ --color-banana-100-rgb: 255, 249, 237;
68
+ --color-banana-200: #ffeec9;
69
+ --color-banana-200-rgb: 255, 238, 201;
70
+ --color-banana-300: #ffdd92;
71
+ --color-banana-300-rgb: 255, 221, 146;
72
+ --color-banana-400: #ffc74a;
73
+ --color-banana-400-rgb: 255, 199, 74;
74
+ --color-banana-500: #e5b242;
75
+ --color-banana-500-rgb: 229, 178, 66;
76
+ --color-banana-600: #99772c;
77
+ --color-banana-600-rgb: 153, 119, 44;
78
+ --color-grey-100: #f3f3f3;
79
+ --color-grey-100-rgb: 243, 243, 243;
80
+ --color-grey-200: #d5d5d5;
81
+ --color-grey-200-rgb: 213, 213, 213;
82
+ --color-grey-300: #949494;
83
+ --color-grey-300-rgb: 148, 148, 148;
84
+ --color-grey-400: #767676;
85
+ --color-grey-400-rgb: 118, 118, 118;
86
+ --color-grey-500: #464646;
87
+ --color-grey-500-rgb: 70, 70, 70;
88
+ --color-grey-600: #323232;
89
+ --color-grey-600-rgb: 50, 50, 50;
90
+ }
12
91
  ._v0AEt {
13
92
  font-family: "Proxima Nova", sans-serif;
14
93
  position: absolute;
@@ -17,7 +96,7 @@ Please ask a designer if you have questions about which colours to use.
17
96
  margin: 2px 0 0 0;
18
97
  padding: 5px 0;
19
98
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
20
- background: #fff;
99
+ background: var(--color-white);
21
100
  margin-top: 8px;
22
101
  z-index: 9999;
23
102
  opacity: 0;
@@ -39,57 +118,49 @@ Please ask a designer if you have questions about which colours to use.
39
118
  display: flex;
40
119
  cursor: pointer;
41
120
  white-space: nowrap;
42
- color: #464646;
121
+ color: var(--color-grey-500);
43
122
  }
44
123
  ._IRJ4j:hover {
45
- background: #F3F3F3;
124
+ background: var(--color-grey-100);
46
125
  }
47
- ._3-eyQ {
126
+ ._1DgA2 {
48
127
  display: flex;
49
128
  }
50
- ._3-eyQ .form__group {
129
+ ._1DgA2 .form__group {
51
130
  margin: 0;
52
131
  }
53
132
 
54
- ._kf0KG {
133
+ ._3HjO2 {
55
134
  align-items: center;
56
135
  }
57
136
 
58
- ._3xCGO {
137
+ ._3r9Wx {
59
138
  align-items: flex-end;
60
139
  }
61
140
 
62
- ._3R2c9 {
141
+ ._oIWCF {
63
142
  align-items: flex-start;
64
143
  }
65
144
 
66
- ._Zvv8e {
145
+ ._36c9a {
67
146
  justify-content: center;
68
147
  }
69
148
 
70
- ._2hBMj {
149
+ ._1bNEh {
71
150
  justify-content: flex-end;
72
151
  }
73
152
 
74
- ._3hKWn {
153
+ ._1VoZz {
75
154
  justify-content: space-between;
76
155
  }
77
156
 
78
- ._3ACwY {
157
+ ._2GoV5 {
79
158
  justify-content: flex-start;
80
159
  }
81
160
 
82
- ._2pujZ {
161
+ ._QuNgn {
83
162
  display: inline-flex;
84
163
  }
85
- /* stylelint-disable color-no-hex */
86
- /*
87
- These are the colour variables to be used around the webapp.
88
- The variables are set up to describe the color and number which represents the lightness of the color.
89
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
90
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
91
- Please ask a designer if you have questions about which colours to use.
92
- */
93
164
  ._2wtfD {
94
165
  -webkit-animation: _2Jprn 1.4s linear infinite;
95
166
  animation: _2Jprn 1.4s linear infinite;
@@ -121,22 +192,22 @@ Please ask a designer if you have questions about which colours to use.
121
192
  ._3zucL {
122
193
  stroke-dasharray: 187;
123
194
  stroke-dashoffset: 0;
124
- stroke: #fb7448;
195
+ stroke: var(--color-tangerine-400);
125
196
  transform-origin: center;
126
197
  -webkit-animation: _3ZqYM 1.4s ease-in-out infinite;
127
198
  animation: _3ZqYM 1.4s ease-in-out infinite;
128
199
  }
129
200
 
130
201
  ._3XYKx {
131
- stroke: #3abda9;
202
+ stroke: var(--color-mint-400);
132
203
  }
133
204
 
134
205
  ._1pYbs {
135
- stroke: #949494;
206
+ stroke: var(--color-grey-300);
136
207
  }
137
208
 
138
209
  ._3ofDF {
139
- stroke: #fff;
210
+ stroke: var(--color-white);
140
211
  }
141
212
 
142
213
  ._e0OH1 {
@@ -170,33 +241,11 @@ Please ask a designer if you have questions about which colours to use.
170
241
  transform: rotate(450deg);
171
242
  }
172
243
  }
173
- /*********************************
174
- For new colours, see _colors.scss.
175
- **********************************/
176
- /* stylelint-disable color-no-hex */
177
- /*
178
- These are the colour variables to be used around the webapp.
179
- The variables are set up to describe the color and number which represents the lightness of the color.
180
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
181
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
182
- Please ask a designer if you have questions about which colours to use.
183
- */
184
244
  ._1P_xb {
185
245
  display: inline-block;
186
246
  position: relative;
187
247
  text-align: left;
188
248
  }
189
- /*********************************
190
- For new colours, see _colors.scss.
191
- **********************************/
192
- /* stylelint-disable color-no-hex */
193
- /*
194
- These are the colour variables to be used around the webapp.
195
- The variables are set up to describe the color and number which represents the lightness of the color.
196
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
197
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
198
- Please ask a designer if you have questions about which colours to use.
199
- */
200
249
  ._3h-8V {
201
250
  font-family: "Proxima Nova", sans-serif;
202
251
  font-size: 14px;
@@ -214,12 +263,12 @@ Please ask a designer if you have questions about which colours to use.
214
263
  opacity: 1;
215
264
  }
216
265
  ._2fg5c {
217
- background: #323232;
218
- color: #fff;
266
+ background: var(--color-grey-600);
267
+ color: var(--color-white);
219
268
  }
220
269
  ._1iXKZ {
221
- background: #fff;
222
- color: #464646;
270
+ background: var(--color-white);
271
+ color: var(--color-grey-500);
223
272
  }
224
273
  ._2K2Xx {
225
274
  font-weight: 600;
@@ -246,24 +295,13 @@ Please ask a designer if you have questions about which colours to use.
246
295
  opacity: 1;
247
296
  }
248
297
  ._2l-Dg {
249
- border-top-color: #323232;
250
- color: #fff;
298
+ border-top-color: var(--color-grey-600);
299
+ color: var(--color-white);
251
300
  }
252
301
  ._2LAWl {
253
- border-top-color: #fff;
254
- color: #464646;
255
- }
256
- /*********************************
257
- For new colours, see _colors.scss.
258
- **********************************/
259
- /* stylelint-disable color-no-hex */
260
- /*
261
- These are the colour variables to be used around the webapp.
262
- The variables are set up to describe the color and number which represents the lightness of the color.
263
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
264
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
265
- Please ask a designer if you have questions about which colours to use.
266
- */
302
+ border-top-color: var(--color-white);
303
+ color: var(--color-grey-500);
304
+ }
267
305
  ._1SQ_p {
268
306
  font-family: "Proxima Nova", sans-serif;
269
307
  font-weight: 600;
@@ -300,7 +338,7 @@ Please ask a designer if you have questions about which colours to use.
300
338
  height: 16px;
301
339
  }
302
340
  ._1SQ_p:focus {
303
- box-shadow: 0 0 8px #a7b7ea;
341
+ box-shadow: 0 0 8px var(--color-eggplant-300);
304
342
  outline: none;
305
343
  text-decoration: none;
306
344
  }
@@ -339,394 +377,361 @@ Please ask a designer if you have questions about which colours to use.
339
377
  }
340
378
 
341
379
  ._3OB2g {
342
- background: #F3F3F3;
343
- border-color: #D5D5D5;
344
- color: #464646;
380
+ background: var(--color-grey-100);
381
+ border-color: var(--color-grey-200);
382
+ color: var(--color-grey-500);
345
383
  }
346
384
  ._3OB2g:hover {
347
- background: #D5D5D5;
348
- border-color: #949494;
349
- color: #323232;
385
+ background: var(--color-grey-200);
386
+ border-color: var(--color-grey-300);
387
+ color: var(--color-grey-600);
350
388
  }
351
389
  ._3OB2g:disabled {
352
- background: #F3F3F3;
353
- border-color: #D5D5D5;
354
- color: #949494;
390
+ background: var(--color-grey-100);
391
+ border-color: var(--color-grey-200);
392
+ color: var(--color-grey-300);
355
393
  }
356
394
  ._3OB2g[aria-disabled=true] {
357
- background: #F3F3F3;
358
- border-color: #D5D5D5;
359
- color: #949494;
395
+ background: var(--color-grey-100);
396
+ border-color: var(--color-grey-200);
397
+ color: var(--color-grey-300);
360
398
  }
361
399
 
362
400
  ._2RivT {
363
- background: #3abda9;
364
- border-color: #3abda9;
365
- color: #fff;
401
+ background: var(--color-mint-400);
402
+ border-color: var(--color-mint-400);
403
+ color: var(--color-white);
366
404
  }
367
405
  ._2RivT:hover {
368
- background: #35ac9a;
369
- border-color: #35ac9a;
370
- color: #fff;
406
+ background: var(--color-mint-500);
407
+ border-color: var(--color-mint-500);
408
+ color: var(--color-white);
371
409
  }
372
410
  ._2RivT:disabled {
373
- background: #8de4d7;
374
- border-color: #8de4d7;
375
- color: #fff;
411
+ background: var(--color-mint-300);
412
+ border-color: var(--color-mint-300);
413
+ color: var(--color-white);
376
414
  }
377
415
  ._2RivT[aria-disabled=true] {
378
- background: #8de4d7;
379
- border-color: #8de4d7;
380
- color: #fff;
416
+ background: var(--color-mint-300);
417
+ border-color: var(--color-mint-300);
418
+ color: var(--color-white);
381
419
  }
382
420
 
383
421
  ._3T8M_ {
384
- background: #e76767;
385
- border-color: #e76767;
386
- color: #fff;
422
+ background: var(--color-radish-400);
423
+ border-color: var(--color-radish-400);
424
+ color: var(--color-white);
387
425
  }
388
426
  ._3T8M_:hover {
389
- background: #cf5c5c;
390
- border-color: #cf5c5c;
391
- color: #fff;
427
+ background: var(--color-radish-500);
428
+ border-color: var(--color-radish-500);
429
+ color: var(--color-white);
392
430
  }
393
431
  ._3T8M_:disabled {
394
- background: #f0a3a3;
395
- border-color: #f0a3a3;
396
- color: #fff;
432
+ background: var(--color-radish-300);
433
+ border-color: var(--color-radish-300);
434
+ color: var(--color-white);
397
435
  }
398
436
  ._3T8M_[aria-disabled=true] {
399
- background: #f0a3a3;
400
- border-color: #f0a3a3;
401
- color: #fff;
437
+ background: var(--color-radish-300);
438
+ border-color: var(--color-radish-300);
439
+ color: var(--color-white);
402
440
  }
403
441
 
404
442
  ._1AYVC {
405
- background: #6d87dd;
406
- border-color: #6d87dd;
407
- color: #fff;
443
+ background: var(--color-eggplant-400);
444
+ border-color: var(--color-eggplant-400);
445
+ color: var(--color-white);
408
446
  }
409
447
  ._1AYVC:hover {
410
- background: #6179c6;
411
- border-color: #6179c6;
412
- color: #fff;
448
+ background: var(--color-eggplant-500);
449
+ border-color: var(--color-eggplant-500);
450
+ color: var(--color-white);
413
451
  }
414
452
  ._1AYVC:disabled {
415
- background: #a7b7ea;
416
- border-color: #a7b7ea;
417
- color: #fff;
453
+ background: var(--color-eggplant-300);
454
+ border-color: var(--color-eggplant-300);
455
+ color: var(--color-white);
418
456
  }
419
457
  ._1AYVC[aria-disabled=true] {
420
- background: #a7b7ea;
421
- border-color: #a7b7ea;
422
- color: #fff;
458
+ background: var(--color-eggplant-300);
459
+ border-color: var(--color-eggplant-300);
460
+ color: var(--color-white);
423
461
  }
424
462
 
425
463
  ._34HiE {
426
- background: #fb7448;
427
- border-color: #fb7448;
428
- color: #fff;
464
+ background: var(--color-tangerine-400);
465
+ border-color: var(--color-tangerine-400);
466
+ color: var(--color-white);
429
467
  }
430
468
  ._34HiE:hover {
431
- background: #e16840;
432
- border-color: #e16840;
433
- color: #fff;
469
+ background: var(--color-tangerine-500);
470
+ border-color: var(--color-tangerine-500);
471
+ color: var(--color-white);
434
472
  }
435
473
  ._34HiE:disabled {
436
- background: #fcab91;
437
- border-color: #fcab91;
438
- color: #fff;
474
+ background: var(--color-tangerine-300);
475
+ border-color: var(--color-tangerine-300);
476
+ color: var(--color-white);
439
477
  }
440
478
  ._34HiE[aria-disabled=true] {
441
- background: #fcab91;
442
- border-color: #fcab91;
443
- color: #fff;
479
+ background: var(--color-tangerine-300);
480
+ border-color: var(--color-tangerine-300);
481
+ color: var(--color-white);
444
482
  }
445
483
 
446
484
  ._3BrS0 {
447
485
  background: transparent;
448
- border-color: #D5D5D5;
449
- color: #464646;
486
+ border-color: var(--color-grey-200);
487
+ color: var(--color-grey-500);
450
488
  }
451
489
  ._3BrS0:hover {
452
490
  background: rgba(0, 0, 0, 0.03);
453
- border-color: #949494;
454
- color: #323232;
491
+ border-color: var(--color-grey-300);
492
+ color: var(--color-grey-600);
455
493
  }
456
494
  ._3BrS0:disabled {
457
495
  background: transparent;
458
- border-color: #D5D5D5;
459
- color: #949494;
496
+ border-color: var(--color-grey-200);
497
+ color: var(--color-grey-300);
460
498
  }
461
499
  ._3BrS0[aria-disabled=true] {
462
500
  background: transparent;
463
- border-color: #D5D5D5;
464
- color: #949494;
501
+ border-color: var(--color-grey-200);
502
+ color: var(--color-grey-300);
465
503
  }
466
504
 
467
505
  ._1LCBO {
468
506
  background: transparent;
469
507
  border-color: transparent;
470
- color: #fff;
508
+ color: var(--color-white);
471
509
  }
472
510
  ._1LCBO:hover {
473
511
  background: rgba(255, 255, 255, 0.1);
474
512
  border-color: rgba(255, 255, 255, 0.1);
475
- color: #fff;
513
+ color: var(--color-white);
476
514
  }
477
515
  ._1LCBO:disabled {
478
516
  background: transparent;
479
517
  border-color: transparent;
480
- color: #949494;
518
+ color: var(--color-grey-300);
481
519
  }
482
520
  ._1LCBO[aria-disabled=true] {
483
521
  background: transparent;
484
522
  border-color: transparent;
485
- color: #949494;
523
+ color: var(--color-grey-300);
486
524
  }
487
525
 
488
526
  ._23S36 {
489
527
  background: transparent;
490
528
  border-color: transparent;
491
- color: #5bc0de;
529
+ color: var(--color-blueberry-400);
492
530
  }
493
531
  ._23S36:hover {
494
532
  background: rgba(0, 0, 0, 0.03);
495
- border-color: #F3F3F3;
496
- color: #51acc7;
533
+ border-color: var(--color-grey-100);
534
+ color: var(--color-blueberry-500);
497
535
  }
498
536
  ._23S36:disabled {
499
537
  background: transparent;
500
538
  border-color: transparent;
501
- color: #949494;
539
+ color: var(--color-grey-300);
502
540
  }
503
541
  ._23S36[aria-disabled=true] {
504
542
  background: transparent;
505
543
  border-color: transparent;
506
- color: #949494;
544
+ color: var(--color-grey-300);
507
545
  }
508
546
 
509
547
  ._2CzxI {
510
548
  background: transparent;
511
549
  border-color: transparent;
512
- color: #e76767;
550
+ color: var(--color-radish-400);
513
551
  }
514
552
  ._2CzxI:hover {
515
553
  background: rgba(0, 0, 0, 0.03);
516
- border-color: #F3F3F3;
517
- color: #cf5c5c;
554
+ border-color: var(--color-grey-100);
555
+ color: var(--color-radish-500);
518
556
  }
519
557
  ._2CzxI:disabled {
520
558
  background: transparent;
521
559
  border-color: transparent;
522
- color: #949494;
560
+ color: var(--color-grey-300);
523
561
  }
524
562
  ._2CzxI[aria-disabled=true] {
525
563
  background: transparent;
526
564
  border-color: transparent;
527
- color: #949494;
565
+ color: var(--color-grey-300);
528
566
  }
529
567
 
530
568
  ._21e4m {
531
569
  background: transparent;
532
570
  border-color: transparent;
533
- color: #6d87dd;
571
+ color: var(--color-eggplant-400);
534
572
  }
535
573
  ._21e4m:hover {
536
574
  background: rgba(0, 0, 0, 0.03);
537
- border-color: #F3F3F3;
538
- color: #6179c6;
575
+ border-color: var(--color-grey-100);
576
+ color: var(--color-eggplant-500);
539
577
  }
540
578
  ._21e4m:disabled {
541
579
  background: transparent;
542
580
  border-color: transparent;
543
- color: #949494;
581
+ color: var(--color-grey-300);
544
582
  }
545
583
  ._21e4m[aria-disabled=true] {
546
584
  background: transparent;
547
585
  border-color: transparent;
548
- color: #949494;
586
+ color: var(--color-grey-300);
549
587
  }
550
588
 
551
589
  ._2-ESu {
552
590
  background: transparent;
553
591
  border-color: transparent;
554
- color: #464646;
592
+ color: var(--color-grey-500);
555
593
  }
556
594
  ._2-ESu:hover {
557
595
  background: rgba(0, 0, 0, 0.03);
558
- border-color: #F3F3F3;
559
- color: #464646;
596
+ border-color: var(--color-grey-100);
597
+ color: var(--color-grey-500);
560
598
  }
561
599
  ._2-ESu:disabled {
562
600
  background: transparent;
563
601
  border-color: transparent;
564
- color: #949494;
602
+ color: var(--color-grey-300);
565
603
  }
566
604
  ._2-ESu[aria-disabled=true] {
567
605
  background: transparent;
568
606
  border-color: transparent;
569
- color: #949494;
607
+ color: var(--color-grey-300);
570
608
  }
571
609
 
572
610
  ._1u3kp {
573
611
  background: transparent;
574
612
  border-color: transparent;
575
- color: #767676;
613
+ color: var(--color-grey-400);
576
614
  }
577
615
  ._1u3kp:hover {
578
616
  background: rgba(0, 0, 0, 0.03);
579
- border-color: #F3F3F3;
580
- color: #767676;
617
+ border-color: var(--color-grey-100);
618
+ color: var(--color-grey-400);
581
619
  }
582
620
  ._1u3kp:disabled {
583
621
  background: transparent;
584
622
  border-color: transparent;
585
- color: #949494;
623
+ color: var(--color-grey-300);
586
624
  }
587
625
  ._1u3kp[aria-disabled=true] {
588
626
  background: transparent;
589
627
  border-color: transparent;
590
- color: #949494;
591
- }
592
- /*********************************
593
- For new colours, see _colors.scss.
594
- **********************************/
595
- /* stylelint-disable color-no-hex */
596
- /*
597
- These are the colour variables to be used around the webapp.
598
- The variables are set up to describe the color and number which represents the lightness of the color.
599
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
600
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
601
- Please ask a designer if you have questions about which colours to use.
602
- */
603
- ._3DlpO {
628
+ color: var(--color-grey-300);
629
+ }
630
+ ._1UG1r {
604
631
  display: flex;
605
632
  padding: 16px;
606
- border: 1px solid #fff;
607
- border-bottom: 1px solid #D5D5D5;
633
+ border: 1px solid var(--color-white);
634
+ border-bottom: 1px solid var(--color-grey-200);
608
635
  }
609
- ._3DlpO:last-child:not(._NS-B9) {
610
- border-bottom: 1px solid #fff;
636
+ ._1UG1r:last-child:not(._WeTZF) {
637
+ border-bottom: 1px solid var(--color-white);
611
638
  }
612
639
 
613
- ._3DlpO:focus:not(:focus-visible) {
640
+ ._1UG1r:focus:not(:focus-visible) {
614
641
  /* Remove the focus indicator on mouse-focus for browsers
615
642
  that do support :focus-visible */
616
643
  outline: none;
617
644
  }
618
645
 
619
- ._2jPpF {
646
+ ._34gnL {
620
647
  cursor: pointer;
621
648
  }
622
- ._2jPpF:hover {
623
- background-color: #F3F3F3;
649
+ ._34gnL:hover {
650
+ background-color: var(--color-grey-100);
624
651
  }
625
652
 
626
- ._NS-B9 {
627
- border: 1px solid #6d87dd;
653
+ ._WeTZF {
654
+ border: 1px solid var(--color-eggplant-400);
628
655
  box-sizing: border-box;
629
- box-shadow: 0 0 8px #a7b7ea;
656
+ box-shadow: 0 0 8px var(--color-eggplant-300);
630
657
  }
631
- ._NS-B9:first-child {
658
+ ._WeTZF:first-child {
632
659
  border-top-left-radius: 8px;
633
660
  border-top-right-radius: 8px;
634
661
  }
635
- ._NS-B9:first-child:not(:last-child) {
662
+ ._WeTZF:first-child:not(:last-child) {
636
663
  border-bottom-left-radius: 0;
637
664
  border-bottom-right-radius: 0;
638
665
  }
639
- ._NS-B9:last-child {
666
+ ._WeTZF:last-child {
640
667
  border-bottom-left-radius: 8px;
641
668
  border-bottom-right-radius: 8px;
642
669
  }
643
- ._NS-B9:last-child:not(:first-child) {
670
+ ._WeTZF:last-child:not(:first-child) {
644
671
  border-top-left-radius: 0;
645
672
  border-top-right-radius: 0;
646
673
  }
647
674
 
648
- ._3ENNn {
675
+ ._3gRJf {
649
676
  display: flex;
650
677
  flex-direction: column;
651
678
  justify-content: center;
652
679
  position: relative;
653
680
  }
654
681
 
655
- ._1FTaE {
682
+ ._3ABSf {
656
683
  width: 40px;
657
684
  }
658
685
  /**
659
686
  This file probaly will be split when we split the components
660
687
  */
661
- /*********************************
662
- For new colours, see _colors.scss.
663
- **********************************/
664
- /* stylelint-disable color-no-hex */
665
- /*
666
- These are the colour variables to be used around the webapp.
667
- The variables are set up to describe the color and number which represents the lightness of the color.
668
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
669
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
670
- Please ask a designer if you have questions about which colours to use.
671
- */
672
- ._28AYq {
688
+ ._kxyuW {
673
689
  display: flex;
674
690
  font-size: 12px;
675
691
  font-weight: 600;
676
692
  font-family: "Proxima Nova", sans-serif;
677
- color: #464646;
693
+ color: var(--color-grey-500);
678
694
  padding: 19px 17px 8px 17px;
679
695
  }
680
696
 
681
- ._3-nHz {
697
+ ._13L7D {
682
698
  display: flex;
683
699
  align-items: center;
684
700
  line-height: 21px;
685
701
  }
686
- ._2Rh0i {
702
+ ._1YCGB {
687
703
  cursor: pointer;
688
704
  }
689
705
 
690
- ._3-nHz:focus:not(:focus-visible) {
706
+ ._13L7D:focus:not(:focus-visible) {
691
707
  /* Remove the focus indicator on mouse-focus for browsers
692
708
  that do support :focus-visible */
693
709
  outline: none;
694
710
  }
695
711
 
696
- ._2fGMK {
712
+ ._1gpTf {
697
713
  width: 40px;
698
714
  }
699
715
 
700
- ._W7CnY {
716
+ ._1tFcX {
701
717
  display: inline-block;
702
718
  padding: 0 8px;
703
719
  line-height: 1em;
704
720
  }
705
721
 
706
- ._2ygIH {
707
- border: 1px solid #D5D5D5;
722
+ ._ppaWg {
723
+ border: 1px solid var(--color-grey-200);
708
724
  border-radius: 8px;
709
725
  font-family: "Proxima Nova", sans-serif;
710
726
  font-size: 14px;
711
727
  }
712
728
 
713
- ._2cqhY {
729
+ ._1nb-e {
714
730
  margin-top: 20px;
715
731
  font-family: "Proxima Nova", sans-serif;
716
732
  }
717
- /*********************************
718
- For new colours, see _colors.scss.
719
- **********************************/
720
- /* stylelint-disable color-no-hex */
721
- /*
722
- These are the colour variables to be used around the webapp.
723
- The variables are set up to describe the color and number which represents the lightness of the color.
724
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
725
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
726
- Please ask a designer if you have questions about which colours to use.
727
- */
728
733
  ._1IynL button:disabled {
729
- border-color: #D5D5D5;
734
+ border-color: var(--color-grey-200);
730
735
  }
731
736
  ._1IynL button:last-child {
732
737
  border-radius: 0 4px 4px 0;
@@ -739,129 +744,86 @@ Please ask a designer if you have questions about which colours to use.
739
744
  border-radius: 0;
740
745
  margin-left: -1px;
741
746
  }
742
- /*********************************
743
- For new colours, see _colors.scss.
744
- **********************************/
745
- /* stylelint-disable color-no-hex */
746
- /*
747
- These are the colour variables to be used around the webapp.
748
- The variables are set up to describe the color and number which represents the lightness of the color.
749
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
750
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
751
- Please ask a designer if you have questions about which colours to use.
752
- */
753
- ._1d8Ci {
747
+ ._2GGMG {
754
748
  display: flex;
755
749
  }
756
- ._1d8Ci:not(:last-child):not(._3tb7U) {
757
- border-bottom: 1px solid #D5D5D5;
750
+ ._2GGMG:not(:last-child):not(._1ZCir) {
751
+ border-bottom: 1px solid var(--color-grey-200);
758
752
  }
759
753
 
760
- ._1d8Ci:focus:not(:focus-visible) {
754
+ ._2GGMG:focus:not(:focus-visible) {
761
755
  /* Remove the focus indicator on mouse-focus for browsers
762
756
  that do support :focus-visible */
763
757
  outline: none;
764
758
  }
765
759
 
766
- ._thFcO {
760
+ ._3VoZI {
767
761
  cursor: pointer;
768
762
  }
769
- ._thFcO:hover {
770
- background-color: #F3F3F3;
763
+ ._3VoZI:hover {
764
+ background-color: var(--color-grey-100);
771
765
  }
772
766
 
773
- ._3tb7U {
774
- border: 1px solid #6d87dd;
767
+ ._1ZCir {
768
+ border: 1px solid var(--color-eggplant-400);
775
769
  box-sizing: border-box;
776
- box-shadow: 0 0 8px #a7b7ea;
770
+ box-shadow: 0 0 8px var(--color-eggplant-300);
777
771
  }
778
- ._3tb7U:first-child {
772
+ ._1ZCir:first-child {
779
773
  border-top-left-radius: 8px;
780
774
  border-top-right-radius: 8px;
781
775
  }
782
- ._3tb7U:first-child:not(:last-child) {
776
+ ._1ZCir:first-child:not(:last-child) {
783
777
  border-bottom-left-radius: 0;
784
778
  border-bottom-right-radius: 0;
785
779
  }
786
- ._3tb7U:last-child {
780
+ ._1ZCir:last-child {
787
781
  border-bottom-left-radius: 8px;
788
782
  border-bottom-right-radius: 8px;
789
783
  }
790
- ._3tb7U:last-child:not(:first-child) {
784
+ ._1ZCir:last-child:not(:first-child) {
791
785
  border-top-left-radius: 0;
792
786
  border-top-right-radius: 0;
793
787
  }
794
788
 
795
- ._OTcMc {
789
+ ._kcNkt {
796
790
  display: flex;
797
791
  flex-direction: column;
798
792
  justify-content: center;
799
793
  position: relative;
800
794
  }
801
- ._lNHQ8 {
795
+ ._2obax {
802
796
  padding: 16px;
803
797
  }
804
- ._13YLe {
798
+ ._bLVPl {
805
799
  flex-direction: unset;
806
800
  justify-content: flex-end;
807
801
  }
808
- ._1rrRr:not(:last-child) {
809
- border-right: 1px solid #D5D5D5;
802
+ ._3PWfD:not(:last-child) {
803
+ border-right: 1px solid var(--color-grey-200);
810
804
  }
811
805
 
812
- ._azbIG {
806
+ ._1IGwu {
813
807
  width: 40px;
814
808
  padding: 16px;
815
809
  box-sizing: content-box;
816
810
  flex-flow: row nowrap;
817
811
  justify-content: flex-end;
818
812
  }
819
- /*********************************
820
- For new colours, see _colors.scss.
821
- **********************************/
822
- /* stylelint-disable color-no-hex */
823
- /*
824
- These are the colour variables to be used around the webapp.
825
- The variables are set up to describe the color and number which represents the lightness of the color.
826
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
827
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
828
- Please ask a designer if you have questions about which colours to use.
829
- */
830
- /*********************************
831
- For new colours, see _colors.scss.
832
- **********************************/
833
- /* stylelint-disable color-no-hex */
834
- /*
835
- These are the colour variables to be used around the webapp.
836
- The variables are set up to describe the color and number which represents the lightness of the color.
837
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
838
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
839
- Please ask a designer if you have questions about which colours to use.
840
- */
841
813
  ._1QDLF {
842
- color: #464646;
814
+ color: var(--color-grey-500);
843
815
  font-family: "Proxima Nova", sans-serif;
844
816
  font-weight: 400;
845
817
  font-size: 12px;
818
+ line-height: 16px;
846
819
  }
847
820
 
848
- /*********************************
849
- For new colours, see _colors.scss.
850
- **********************************/
851
- /* stylelint-disable color-no-hex */
852
- /*
853
- These are the colour variables to be used around the webapp.
854
- The variables are set up to describe the color and number which represents the lightness of the color.
855
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
856
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
857
- Please ask a designer if you have questions about which colours to use.
858
- */
859
821
  ._2wiMV {
860
822
  line-height: normal;
861
823
  padding: 0;
862
824
  width: auto;
863
825
  float: none;
864
- color: #464646;
826
+ color: var(--color-grey-500);
865
827
  font-family: "Proxima Nova", sans-serif;
866
828
  font-weight: 600;
867
829
  font-size: 14px;
@@ -897,7 +859,7 @@ Just for future references:
897
859
  padding: 0;
898
860
  width: auto;
899
861
  float: none;
900
- color: #464646;
862
+ color: var(--color-grey-500);
901
863
  font-family: "Proxima Nova", sans-serif;
902
864
  font-weight: 600;
903
865
  font-size: 14px;
@@ -906,10 +868,11 @@ Just for future references:
906
868
  }
907
869
 
908
870
  ._1jEiW {
909
- color: #464646;
871
+ color: var(--color-grey-500);
910
872
  font-family: "Proxima Nova", sans-serif;
911
873
  font-weight: 400;
912
874
  font-size: 12px;
875
+ line-height: 16px;
913
876
  margin-left: 48px;
914
877
  display: block;
915
878
  }
@@ -929,7 +892,7 @@ Just for future references:
929
892
  ._3tNyE::before {
930
893
  content: "";
931
894
  display: block;
932
- background: #D5D5D5;
895
+ background: var(--color-grey-200);
933
896
  transition: all ease-in-out 150ms;
934
897
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.03);
935
898
  border-radius: 26px;
@@ -944,8 +907,8 @@ Just for future references:
944
907
  left: 2px;
945
908
  right: 21px;
946
909
  top: 2px;
947
- background: #fff;
948
- border: 1px solid #D5D5D5;
910
+ background: var(--color-white);
911
+ border: 1px solid var(--color-grey-200);
949
912
  border-radius: 24px;
950
913
  height: 14px;
951
914
  width: 14px;
@@ -955,7 +918,7 @@ Just for future references:
955
918
 
956
919
  /* special states */
957
920
  ._1ui8X [type=checkbox]:focus-visible + ._3tNyE {
958
- outline: #6d87dd solid 1px;
921
+ outline: var(--color-eggplant-400) solid 1px;
959
922
  }
960
923
 
961
924
  ._1ui8X [type=checkbox]:disabled + ._3tNyE {
@@ -969,113 +932,80 @@ Just for future references:
969
932
 
970
933
  /* checked states */
971
934
  ._1ui8X [type=checkbox]:checked + ._3tNyE::before {
972
- background: #3abda9;
935
+ background: var(--color-mint-400);
973
936
  }
974
937
 
975
938
  ._1ui8X [type=checkbox]:checked + ._3tNyE::after {
976
- border-color: #3abda9;
939
+ border-color: var(--color-mint-400);
977
940
  left: 21px;
978
941
  right: 2px;
979
942
  }
980
- /*********************************
981
- For new colours, see _colors.scss.
982
- **********************************/
983
- /* stylelint-disable color-no-hex */
984
- /*
985
- These are the colour variables to be used around the webapp.
986
- The variables are set up to describe the color and number which represents the lightness of the color.
987
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
988
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
989
- Please ask a designer if you have questions about which colours to use.
990
- */
991
- ._of22N {
943
+ ._2ZgmC {
992
944
  display: flex;
993
945
  font-size: 12px;
994
946
  font-weight: 600;
995
947
  font-family: "Proxima Nova", sans-serif;
996
- color: #464646;
948
+ color: var(--color-grey-500);
997
949
  padding: 20px 17px 8px 17px;
998
950
  }
999
951
 
1000
- ._27x4v {
952
+ ._3slLU {
1001
953
  display: flex;
1002
954
  align-items: center;
1003
955
  line-height: 21px;
1004
956
  }
1005
- ._27x4v:not(._27x4v:first-child) {
957
+ ._3slLU:not(._3slLU:first-child) {
1006
958
  padding-left: 16px;
1007
959
  }
1008
- ._27x4v:not(._27x4v:last-child) {
960
+ ._3slLU:not(._3slLU:last-child) {
1009
961
  padding-right: 16px;
1010
962
  }
1011
- ._3gw3Z {
963
+ ._1-26z {
1012
964
  cursor: pointer;
1013
965
  }
1014
- ._Fjm2n {
966
+ ._1vCLo {
1015
967
  justify-content: flex-end;
1016
968
  }
1017
969
 
1018
- ._27x4v:focus:not(:focus-visible) {
970
+ ._3slLU:focus:not(:focus-visible) {
1019
971
  /* Remove the focus indicator on mouse-focus for browsers
1020
972
  that do support :focus-visible */
1021
973
  outline: none;
1022
974
  }
1023
975
 
1024
- ._LoIvx {
976
+ ._2i1wY {
1025
977
  width: 40px;
1026
978
  box-sizing: content-box;
1027
979
  }
1028
980
 
1029
- ._3VjFP {
981
+ ._BLrNe {
1030
982
  display: inline-block;
1031
983
  padding: 0 8px;
1032
984
  line-height: 1em;
1033
985
  }
1034
986
 
1035
- ._1bTmd {
1036
- border: 1px solid #D5D5D5;
987
+ ._CT4Lp {
988
+ border: 1px solid var(--color-grey-200);
1037
989
  border-radius: 8px;
1038
990
  font-family: "Proxima Nova", sans-serif;
1039
991
  font-size: 14px;
1040
992
  }
1041
993
 
1042
- ._1opWx {
1043
- background: #F3F3F3;
994
+ ._398L3 {
995
+ background: var(--color-grey-100);
1044
996
  font-weight: 600;
1045
997
  }
1046
998
 
1047
- ._F_spz {
999
+ ._2smmY {
1048
1000
  margin-top: 20px;
1049
1001
  font-family: "Proxima Nova", sans-serif;
1050
1002
  }
1051
- /*********************************
1052
- For new colours, see _colors.scss.
1053
- **********************************/
1054
- /* stylelint-disable color-no-hex */
1055
- /*
1056
- These are the colour variables to be used around the webapp.
1057
- The variables are set up to describe the color and number which represents the lightness of the color.
1058
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1059
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1060
- Please ask a designer if you have questions about which colours to use.
1061
- */
1062
- ._orjDM {
1003
+ ._2Ybjx {
1063
1004
  padding: 16px;
1064
1005
  }
1065
- ._3EpfF {
1006
+ ._1cXj6 {
1066
1007
  text-align: right;
1067
1008
  }
1068
- /*********************************
1069
- For new colours, see _colors.scss.
1070
- **********************************/
1071
- /* stylelint-disable color-no-hex */
1072
- /*
1073
- These are the colour variables to be used around the webapp.
1074
- The variables are set up to describe the color and number which represents the lightness of the color.
1075
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1076
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1077
- Please ask a designer if you have questions about which colours to use.
1078
- */
1079
1009
  ._2puqJ {
1080
1010
  position: fixed;
1081
1011
  top: 0px;
@@ -1112,8 +1042,8 @@ Please ask a designer if you have questions about which colours to use.
1112
1042
 
1113
1043
  ._wQQ_2 {
1114
1044
  position: initial;
1115
- border: 1px solid #D5D5D5;
1116
- background: #fff;
1045
+ border: 1px solid var(--color-grey-200);
1046
+ background: var(--color-white);
1117
1047
  overflow: auto;
1118
1048
  outline: none;
1119
1049
  padding: 32px;
@@ -1133,21 +1063,10 @@ Please ask a designer if you have questions about which colours to use.
1133
1063
  ._2c2QP {
1134
1064
  opacity: 0;
1135
1065
  }
1136
- /*********************************
1137
- For new colours, see _colors.scss.
1138
- **********************************/
1139
- /* stylelint-disable color-no-hex */
1140
- /*
1141
- These are the colour variables to be used around the webapp.
1142
- The variables are set up to describe the color and number which represents the lightness of the color.
1143
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1144
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1145
- Please ask a designer if you have questions about which colours to use.
1146
- */
1147
1066
  ._36nxW {
1148
1067
  font-size: 24px;
1149
1068
  line-height: 28px;
1150
- color: #464646;
1069
+ color: var(--color-grey-500);
1151
1070
  font-weight: 600;
1152
1071
  font-family: "Proxima Nova", sans-serif;
1153
1072
  }
@@ -1155,20 +1074,9 @@ Please ask a designer if you have questions about which colours to use.
1155
1074
  ._2XwRD {
1156
1075
  font-size: 20px;
1157
1076
  line-height: 24px;
1158
- color: #767676;
1077
+ color: var(--color-grey-400);
1159
1078
  font-family: "Proxima Nova", sans-serif;
1160
1079
  }
1161
- /*********************************
1162
- For new colours, see _colors.scss.
1163
- **********************************/
1164
- /* stylelint-disable color-no-hex */
1165
- /*
1166
- These are the colour variables to be used around the webapp.
1167
- The variables are set up to describe the color and number which represents the lightness of the color.
1168
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1169
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1170
- Please ask a designer if you have questions about which colours to use.
1171
- */
1172
1080
  /**
1173
1081
  * This is for adding a shadow when the body is scrollable.
1174
1082
  * It is using ::before and ::after to accomplish that => https://www.kizu.ru/shadowscroll/
@@ -1203,17 +1111,6 @@ Please ask a designer if you have questions about which colours to use.
1203
1111
  margin: -30px 0 0;
1204
1112
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%, #fff);
1205
1113
  }
1206
- /*********************************
1207
- For new colours, see _colors.scss.
1208
- **********************************/
1209
- /* stylelint-disable color-no-hex */
1210
- /*
1211
- These are the colour variables to be used around the webapp.
1212
- The variables are set up to describe the color and number which represents the lightness of the color.
1213
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1214
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1215
- Please ask a designer if you have questions about which colours to use.
1216
- */
1217
1114
  ._LKOr5 {
1218
1115
  flex: 1;
1219
1116
  display: flex;
@@ -1225,17 +1122,6 @@ Please ask a designer if you have questions about which colours to use.
1225
1122
  ._Qktd- {
1226
1123
  margin-left: -12px;
1227
1124
  }
1228
- /*********************************
1229
- For new colours, see _colors.scss.
1230
- **********************************/
1231
- /* stylelint-disable color-no-hex */
1232
- /*
1233
- These are the colour variables to be used around the webapp.
1234
- The variables are set up to describe the color and number which represents the lightness of the color.
1235
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1236
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1237
- Please ask a designer if you have questions about which colours to use.
1238
- */
1239
1125
  ._v1b-5 {
1240
1126
  flex: 1;
1241
1127
  display: flex;
@@ -1273,21 +1159,21 @@ Please ask a designer if you have questions about which colours to use.
1273
1159
  left: auto;
1274
1160
  display: inline-block;
1275
1161
  margin-top: 2px;
1276
- color: #949494;
1162
+ color: var(--color-grey-300);
1277
1163
  cursor: pointer;
1278
1164
  background-image: none;
1279
1165
  width: 0;
1280
1166
  height: 0;
1281
1167
  border-top: 7px solid transparent;
1282
1168
  border-bottom: 7px solid transparent;
1283
- border-right: 10px solid #464646;
1169
+ border-right: 10px solid var(--color-grey-500);
1284
1170
  margin-right: 1.5em;
1285
1171
  }
1286
1172
  ._20uqc:hover {
1287
1173
  opacity: 0.8;
1288
1174
  }
1289
1175
  ._20uqc:hover {
1290
- border-right-color: #767676;
1176
+ border-right-color: var(--color-grey-400);
1291
1177
  }
1292
1178
 
1293
1179
  ._3C53z {
@@ -1297,21 +1183,21 @@ Please ask a designer if you have questions about which colours to use.
1297
1183
  left: auto;
1298
1184
  display: inline-block;
1299
1185
  margin-top: 2px;
1300
- color: #949494;
1186
+ color: var(--color-grey-300);
1301
1187
  cursor: pointer;
1302
1188
  background-image: none;
1303
1189
  width: 0;
1304
1190
  height: 0;
1305
1191
  border-top: 7px solid transparent;
1306
1192
  border-bottom: 7px solid transparent;
1307
- border-left: 10px solid #464646;
1193
+ border-left: 10px solid var(--color-grey-500);
1308
1194
  }
1309
1195
  ._3C53z:hover {
1310
1196
  opacity: 0.8;
1311
1197
  }
1312
1198
  ._3C53z:hover {
1313
1199
  opacity: 0.8;
1314
- border-left-color: #767676;
1200
+ border-left-color: var(--color-grey-400);
1315
1201
  }
1316
1202
 
1317
1203
  ._M_eHz {
@@ -1342,7 +1228,7 @@ Please ask a designer if you have questions about which colours to use.
1342
1228
  ._1FXNw > div {
1343
1229
  font-weight: 600;
1344
1230
  font-size: 20px;
1345
- color: #464646;
1231
+ color: var(--color-grey-500);
1346
1232
  }
1347
1233
 
1348
1234
  ._3KcRU {
@@ -1357,7 +1243,7 @@ Please ask a designer if you have questions about which colours to use.
1357
1243
  ._c1Y-X {
1358
1244
  display: table-cell;
1359
1245
  padding: 0.5em;
1360
- color: #767676;
1246
+ color: var(--color-grey-400);
1361
1247
  text-align: center;
1362
1248
  font-size: 0.875em;
1363
1249
  }
@@ -1384,7 +1270,7 @@ Please ask a designer if you have questions about which colours to use.
1384
1270
  cursor: pointer;
1385
1271
  }
1386
1272
  ._1AWH2:not(._1J9dh):not(._3vJkw):not(._1DR0N):not(._276GV):hover {
1387
- background: #F3F3F3;
1273
+ background: var(--color-grey-100);
1388
1274
  }
1389
1275
 
1390
1276
  ._2M5xr {
@@ -1392,31 +1278,31 @@ Please ask a designer if you have questions about which colours to use.
1392
1278
  }
1393
1279
 
1394
1280
  ._3N6fj {
1395
- color: #fb7448;
1281
+ color: var(--color-tangerine-400);
1396
1282
  font-weight: 700;
1397
1283
  }
1398
1284
 
1399
1285
  ._1DR0N:not(._3vJkw):not(._276GV) {
1400
- background-color: #fdd5c8;
1401
- color: #fb7448;
1286
+ background-color: var(--color-tangerine-200);
1287
+ color: var(--color-tangerine-400);
1402
1288
  }
1403
1289
 
1404
1290
  ._1DR0N:not(._3vJkw):not(._276GV):hover {
1405
- background-color: #fb7448;
1406
- color: #fff;
1291
+ background-color: var(--color-tangerine-400);
1292
+ color: var(--color-white);
1407
1293
  }
1408
1294
 
1409
1295
  ._1DR0N._3N6fj:hover {
1410
- color: #fff;
1296
+ color: var(--color-white);
1411
1297
  }
1412
1298
 
1413
1299
  ._3vJkw {
1414
- color: #D5D5D5;
1300
+ color: var(--color-grey-200);
1415
1301
  cursor: default;
1416
1302
  }
1417
1303
 
1418
1304
  ._276GV:not(._3vJkw) {
1419
- color: #949494;
1305
+ color: var(--color-grey-300);
1420
1306
  cursor: default;
1421
1307
  }
1422
1308
 
@@ -1428,7 +1314,7 @@ Please ask a designer if you have questions about which colours to use.
1428
1314
  position: absolute;
1429
1315
  left: 0;
1430
1316
  z-index: 1;
1431
- background: #fff;
1317
+ background: var(--color-white);
1432
1318
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
1433
1319
  }
1434
1320
 
@@ -1436,24 +1322,13 @@ Please ask a designer if you have questions about which colours to use.
1436
1322
  display: table-cell;
1437
1323
  padding: 0.5em;
1438
1324
  min-width: 1em;
1439
- border-right: 1px solid #D5D5D5;
1440
- color: #949494;
1325
+ border-right: 1px solid var(--color-grey-200);
1326
+ color: var(--color-grey-300);
1441
1327
  vertical-align: middle;
1442
1328
  text-align: right;
1443
1329
  font-size: 0.75em;
1444
1330
  cursor: pointer;
1445
1331
  }
1446
- /*********************************
1447
- For new colours, see _colors.scss.
1448
- **********************************/
1449
- /* stylelint-disable color-no-hex */
1450
- /*
1451
- These are the colour variables to be used around the webapp.
1452
- The variables are set up to describe the color and number which represents the lightness of the color.
1453
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1454
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1455
- Please ask a designer if you have questions about which colours to use.
1456
- */
1457
1332
  ._okDvi {
1458
1333
  flex: 1;
1459
1334
  display: flex;
@@ -1491,21 +1366,21 @@ Please ask a designer if you have questions about which colours to use.
1491
1366
  left: auto;
1492
1367
  display: inline-block;
1493
1368
  margin-top: 2px;
1494
- color: #949494;
1369
+ color: var(--color-grey-300);
1495
1370
  cursor: pointer;
1496
1371
  background-image: none;
1497
1372
  width: 0;
1498
1373
  height: 0;
1499
1374
  border-top: 7px solid transparent;
1500
1375
  border-bottom: 7px solid transparent;
1501
- border-right: 10px solid #464646;
1376
+ border-right: 10px solid var(--color-grey-500);
1502
1377
  margin-right: 1.5em;
1503
1378
  }
1504
1379
  ._3gjq8:hover {
1505
1380
  opacity: 0.8;
1506
1381
  }
1507
1382
  ._3gjq8:hover {
1508
- border-right-color: #767676;
1383
+ border-right-color: var(--color-grey-400);
1509
1384
  }
1510
1385
 
1511
1386
  ._1m-Kd {
@@ -1515,21 +1390,21 @@ Please ask a designer if you have questions about which colours to use.
1515
1390
  left: auto;
1516
1391
  display: inline-block;
1517
1392
  margin-top: 2px;
1518
- color: #949494;
1393
+ color: var(--color-grey-300);
1519
1394
  cursor: pointer;
1520
1395
  background-image: none;
1521
1396
  width: 0;
1522
1397
  height: 0;
1523
1398
  border-top: 7px solid transparent;
1524
1399
  border-bottom: 7px solid transparent;
1525
- border-left: 10px solid #464646;
1400
+ border-left: 10px solid var(--color-grey-500);
1526
1401
  }
1527
1402
  ._1m-Kd:hover {
1528
1403
  opacity: 0.8;
1529
1404
  }
1530
1405
  ._1m-Kd:hover {
1531
1406
  opacity: 0.8;
1532
- border-left-color: #767676;
1407
+ border-left-color: var(--color-grey-400);
1533
1408
  }
1534
1409
 
1535
1410
  ._Fq6Xh {
@@ -1560,7 +1435,7 @@ Please ask a designer if you have questions about which colours to use.
1560
1435
  ._36X9Y > div {
1561
1436
  font-weight: 600;
1562
1437
  font-size: 20px;
1563
- color: #464646;
1438
+ color: var(--color-grey-500);
1564
1439
  }
1565
1440
 
1566
1441
  ._1aWPn {
@@ -1575,7 +1450,7 @@ Please ask a designer if you have questions about which colours to use.
1575
1450
  ._t-ctd {
1576
1451
  display: table-cell;
1577
1452
  padding: 0.5em;
1578
- color: #767676;
1453
+ color: var(--color-grey-400);
1579
1454
  text-align: center;
1580
1455
  font-size: 0.875em;
1581
1456
  }
@@ -1602,7 +1477,7 @@ Please ask a designer if you have questions about which colours to use.
1602
1477
  cursor: pointer;
1603
1478
  }
1604
1479
  ._3nNcG:not(._1O7OT):not(._1M4ZF):not(._2PEs8):not(._1PIJa):hover {
1605
- background: #F3F3F3;
1480
+ background: var(--color-grey-100);
1606
1481
  }
1607
1482
 
1608
1483
  ._2T_z1 {
@@ -1610,31 +1485,31 @@ Please ask a designer if you have questions about which colours to use.
1610
1485
  }
1611
1486
 
1612
1487
  ._1hVM6 {
1613
- color: #fb7448;
1488
+ color: var(--color-tangerine-400);
1614
1489
  font-weight: 700;
1615
1490
  }
1616
1491
 
1617
1492
  ._2PEs8:not(._1M4ZF):not(._1PIJa) {
1618
- background-color: #fdd5c8;
1619
- color: #fb7448;
1493
+ background-color: var(--color-tangerine-200);
1494
+ color: var(--color-tangerine-400);
1620
1495
  }
1621
1496
 
1622
1497
  ._2PEs8:not(._1M4ZF):not(._1PIJa):hover {
1623
- background-color: #fb7448;
1624
- color: #fff;
1498
+ background-color: var(--color-tangerine-400);
1499
+ color: var(--color-white);
1625
1500
  }
1626
1501
 
1627
1502
  ._2PEs8._1hVM6:hover {
1628
- color: #fff;
1503
+ color: var(--color-white);
1629
1504
  }
1630
1505
 
1631
1506
  ._1M4ZF {
1632
- color: #D5D5D5;
1507
+ color: var(--color-grey-200);
1633
1508
  cursor: default;
1634
1509
  }
1635
1510
 
1636
1511
  ._1PIJa:not(._1M4ZF) {
1637
- color: #949494;
1512
+ color: var(--color-grey-300);
1638
1513
  cursor: default;
1639
1514
  }
1640
1515
 
@@ -1646,7 +1521,7 @@ Please ask a designer if you have questions about which colours to use.
1646
1521
  position: absolute;
1647
1522
  left: 0;
1648
1523
  z-index: 1;
1649
- background: #fff;
1524
+ background: var(--color-white);
1650
1525
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
1651
1526
  }
1652
1527
 
@@ -1654,8 +1529,8 @@ Please ask a designer if you have questions about which colours to use.
1654
1529
  display: table-cell;
1655
1530
  padding: 0.5em;
1656
1531
  min-width: 1em;
1657
- border-right: 1px solid #D5D5D5;
1658
- color: #949494;
1532
+ border-right: 1px solid var(--color-grey-200);
1533
+ color: var(--color-grey-300);
1659
1534
  vertical-align: middle;
1660
1535
  text-align: right;
1661
1536
  font-size: 0.75em;
@@ -1677,8 +1552,8 @@ Please ask a designer if you have questions about which colours to use.
1677
1552
  }
1678
1553
 
1679
1554
  ._2PEs8:not(._1M4ZF) {
1680
- background-color: #fdd5c8;
1681
- color: #fb7448;
1555
+ background-color: var(--color-tangerine-200);
1556
+ color: var(--color-tangerine-400);
1682
1557
  }
1683
1558
  ._2PEs8:first-of-type {
1684
1559
  border-top-left-radius: 50%;
@@ -1690,11 +1565,11 @@ Please ask a designer if you have questions about which colours to use.
1690
1565
  }
1691
1566
 
1692
1567
  ._3Nwep:hover {
1693
- background: #F3F3F3;
1568
+ background: var(--color-grey-100);
1694
1569
  }
1695
1570
  ._3Nwep:hover ._2PEs8:not(._1M4ZF) {
1696
- background-color: #fb7448;
1697
- color: #fff;
1571
+ background-color: var(--color-tangerine-400);
1572
+ color: var(--color-white);
1698
1573
  }
1699
1574
  ._3Nwep:hover ._3nNcG:first-of-type {
1700
1575
  border-top-left-radius: 50%;
@@ -1704,23 +1579,12 @@ Please ask a designer if you have questions about which colours to use.
1704
1579
  border-top-right-radius: 50%;
1705
1580
  border-bottom-right-radius: 50%;
1706
1581
  }
1707
- /*********************************
1708
- For new colours, see _colors.scss.
1709
- **********************************/
1710
- /* stylelint-disable color-no-hex */
1711
- /*
1712
- These are the colour variables to be used around the webapp.
1713
- The variables are set up to describe the color and number which represents the lightness of the color.
1714
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1715
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1716
- Please ask a designer if you have questions about which colours to use.
1717
- */
1718
1582
  ._h724f {
1719
1583
  line-height: normal;
1720
1584
  padding: 0;
1721
1585
  width: auto;
1722
1586
  float: none;
1723
- color: #464646;
1587
+ color: var(--color-grey-500);
1724
1588
  font-family: "Proxima Nova", sans-serif;
1725
1589
  font-weight: 600;
1726
1590
  font-size: 14px;
@@ -1732,51 +1596,19 @@ Please ask a designer if you have questions about which colours to use.
1732
1596
  white-space: nowrap;
1733
1597
  text-overflow: ellipsis;
1734
1598
  }
1735
- /*********************************
1736
- For new colours, see _colors.scss.
1737
- **********************************/
1738
- /* stylelint-disable color-no-hex */
1739
- /*
1740
- These are the colour variables to be used around the webapp.
1741
- The variables are set up to describe the color and number which represents the lightness of the color.
1742
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1743
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1744
- Please ask a designer if you have questions about which colours to use.
1745
- */
1746
1599
  ._1DWBq {
1747
- color: #464646;
1600
+ color: var(--color-grey-500);
1748
1601
  font-family: "Proxima Nova", sans-serif;
1749
1602
  font-weight: 400;
1750
1603
  font-size: 12px;
1604
+ line-height: 16px;
1751
1605
  }
1752
- /*********************************
1753
- For new colours, see _colors.scss.
1754
- **********************************/
1755
- /* stylelint-disable color-no-hex */
1756
- /*
1757
- These are the colour variables to be used around the webapp.
1758
- The variables are set up to describe the color and number which represents the lightness of the color.
1759
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1760
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1761
- Please ask a designer if you have questions about which colours to use.
1762
- */
1763
1606
  ._nZ2MD {
1764
- color: #e76767;
1607
+ color: var(--color-radish-400);
1765
1608
  font-family: "Proxima Nova", sans-serif;
1766
1609
  font-weight: 400;
1767
1610
  font-size: 12px;
1768
1611
  }
1769
- /*********************************
1770
- For new colours, see _colors.scss.
1771
- **********************************/
1772
- /* stylelint-disable color-no-hex */
1773
- /*
1774
- These are the colour variables to be used around the webapp.
1775
- The variables are set up to describe the color and number which represents the lightness of the color.
1776
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1777
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1778
- Please ask a designer if you have questions about which colours to use.
1779
- */
1780
1612
  ._ybKOk {
1781
1613
  position: relative;
1782
1614
  display: flex;
@@ -1795,7 +1627,7 @@ Please ask a designer if you have questions about which colours to use.
1795
1627
  position: absolute;
1796
1628
  line-height: 22px;
1797
1629
  padding: 8px;
1798
- color: #464646;
1630
+ color: var(--color-grey-500);
1799
1631
  min-width: 8px;
1800
1632
  pointer-events: none;
1801
1633
  font-size: 14px;
@@ -1811,14 +1643,14 @@ Please ask a designer if you have questions about which colours to use.
1811
1643
  text-align: left;
1812
1644
  }
1813
1645
  ._eX5OL svg {
1814
- color: #767676;
1646
+ color: var(--color-grey-400);
1815
1647
  }
1816
1648
 
1817
1649
  .__YH01 {
1818
1650
  position: absolute;
1819
1651
  line-height: 22px;
1820
1652
  padding: 8px;
1821
- color: #464646;
1653
+ color: var(--color-grey-500);
1822
1654
  min-width: 8px;
1823
1655
  pointer-events: none;
1824
1656
  font-size: 14px;
@@ -1835,23 +1667,12 @@ Please ask a designer if you have questions about which colours to use.
1835
1667
  text-align: right;
1836
1668
  }
1837
1669
  .__YH01 svg {
1838
- color: #767676;
1839
- }
1840
- /*********************************
1841
- For new colours, see _colors.scss.
1842
- **********************************/
1843
- /* stylelint-disable color-no-hex */
1844
- /*
1845
- These are the colour variables to be used around the webapp.
1846
- The variables are set up to describe the color and number which represents the lightness of the color.
1847
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1848
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1849
- Please ask a designer if you have questions about which colours to use.
1850
- */
1851
- ._kIngZ {
1670
+ color: var(--color-grey-400);
1671
+ }
1672
+ ._qYNve {
1852
1673
  width: 100%;
1853
1674
  }
1854
- ._kIngZ input {
1675
+ ._qYNve input {
1855
1676
  border: 1px solid transparent;
1856
1677
  display: flex;
1857
1678
  justify-content: flex-end;
@@ -1862,46 +1683,46 @@ Please ask a designer if you have questions about which colours to use.
1862
1683
  font-family: "Proxima Nova", sans-serif;
1863
1684
  border-radius: 0;
1864
1685
  }
1865
- ._kIngZ input:focus {
1866
- border-color: #6d87dd;
1867
- box-shadow: 0 0 8px #a7b7ea;
1686
+ ._qYNve input:focus {
1687
+ border-color: var(--color-eggplant-400);
1688
+ box-shadow: 0 0 8px var(--color-eggplant-300);
1868
1689
  outline: none;
1869
1690
  }
1870
- ._kIngZ input:hover {
1871
- background: #F3F3F3;
1691
+ ._qYNve input:hover {
1692
+ background: var(--color-grey-100);
1872
1693
  }
1873
- ._3_QIj {
1694
+ ._3w6bw {
1874
1695
  text-align: right;
1875
1696
  }
1876
- ._2Kyuc {
1697
+ ._2y-_5 {
1877
1698
  /* Firefox */
1878
1699
  }
1879
- ._2Kyuc input::-webkit-outer-spin-button,
1880
- ._2Kyuc input::-webkit-inner-spin-button {
1700
+ ._2y-_5 input::-webkit-outer-spin-button,
1701
+ ._2y-_5 input::-webkit-inner-spin-button {
1881
1702
  -webkit-appearance: none;
1882
1703
  margin: 0;
1883
1704
  }
1884
- ._2Kyuc input[type=number] {
1705
+ ._2y-_5 input[type=number] {
1885
1706
  -moz-appearance: textfield;
1886
1707
  }
1887
1708
 
1888
- ._y9SBQ._y9SBQ {
1889
- border-color: #e76767;
1709
+ ._1Mx8j._1Mx8j {
1710
+ border-color: var(--color-radish-400);
1890
1711
  }
1891
1712
 
1892
- ._32mWH._32mWH {
1713
+ ._2BlhN._2BlhN {
1893
1714
  border-top-left-radius: 8px;
1894
1715
  }
1895
1716
 
1896
- ._3Jg2-._3Jg2- {
1717
+ ._1qDoN._1qDoN {
1897
1718
  border-top-right-radius: 8px;
1898
1719
  }
1899
1720
 
1900
- ._1F5fj._1F5fj {
1721
+ ._2NUlb._2NUlb {
1901
1722
  border-bottom-left-radius: 8px;
1902
1723
  }
1903
1724
 
1904
- ._1fTTW._1fTTW {
1725
+ ._3Mm-v._3Mm-v {
1905
1726
  border-bottom-right-radius: 8px;
1906
1727
  }
1907
1728
  ._3CaV0 {
@@ -1910,22 +1731,11 @@ Please ask a designer if you have questions about which colours to use.
1910
1731
  ._2i-Ll > div {
1911
1732
  min-width: 0;
1912
1733
  }
1913
- /*********************************
1914
- For new colours, see _colors.scss.
1915
- **********************************/
1916
- /* stylelint-disable color-no-hex */
1917
- /*
1918
- These are the colour variables to be used around the webapp.
1919
- The variables are set up to describe the color and number which represents the lightness of the color.
1920
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1921
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1922
- Please ask a designer if you have questions about which colours to use.
1923
- */
1924
1734
  ._BkzdC {
1925
1735
  border-radius: 4px;
1926
1736
  padding: 7px;
1927
1737
  box-shadow: none;
1928
- border: 1px solid #D5D5D5;
1738
+ border: 1px solid var(--color-grey-200);
1929
1739
  flex: 1;
1930
1740
  display: flex;
1931
1741
  flex-direction: column;
@@ -1935,7 +1745,7 @@ Please ask a designer if you have questions about which colours to use.
1935
1745
  line-height: 22px;
1936
1746
  font-size: 14px;
1937
1747
  font-family: "Proxima Nova", sans-serif;
1938
- color: #464646;
1748
+ color: var(--color-grey-500);
1939
1749
  margin: 0;
1940
1750
  border: none;
1941
1751
  resize: none;
@@ -1947,65 +1757,54 @@ Please ask a designer if you have questions about which colours to use.
1947
1757
  outline: none;
1948
1758
  }
1949
1759
  ._BkzdC textarea:disabled {
1950
- background-color: #F3F3F3;
1760
+ background-color: var(--color-grey-100);
1951
1761
  }
1952
1762
  ._Rop31 {
1953
- border: 1px solid #6d87dd;
1954
- box-shadow: 0 0 8px #a7b7ea;
1763
+ border: 1px solid var(--color-eggplant-400);
1764
+ box-shadow: 0 0 8px var(--color-eggplant-300);
1955
1765
  outline: none;
1956
1766
  }
1957
1767
  ._2x3Cm {
1958
- background-color: #F3F3F3;
1768
+ background-color: var(--color-grey-100);
1959
1769
  }
1960
1770
  ._3zOwV {
1961
- border-color: #e76767 !important;
1771
+ border-color: var(--color-radish-400) !important;
1962
1772
  }
1963
1773
  ._rQqnL {
1964
1774
  margin-top: 5px;
1965
1775
  }
1966
- /*********************************
1967
- For new colours, see _colors.scss.
1968
- **********************************/
1969
- /* stylelint-disable color-no-hex */
1970
- /*
1971
- These are the colour variables to be used around the webapp.
1972
- The variables are set up to describe the color and number which represents the lightness of the color.
1973
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
1974
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
1975
- Please ask a designer if you have questions about which colours to use.
1976
- */
1977
1776
  ._20YOA {
1978
1777
  padding: 7px;
1979
1778
  line-height: 22px;
1980
1779
  border-radius: 4px;
1981
1780
  font-size: 14px;
1982
1781
  font-family: "Proxima Nova", sans-serif;
1983
- color: #464646;
1782
+ color: var(--color-grey-500);
1984
1783
  box-shadow: none;
1985
- border: 1px solid #D5D5D5;
1784
+ border: 1px solid var(--color-grey-200);
1986
1785
  margin: 0;
1987
1786
  flex: 1;
1988
1787
  min-width: 90px;
1989
1788
  }
1990
1789
  ._20YOA:focus {
1991
- border: 1px solid #6d87dd;
1992
- box-shadow: 0 0 8px #a7b7ea;
1790
+ border: 1px solid var(--color-eggplant-400);
1791
+ box-shadow: 0 0 8px var(--color-eggplant-300);
1993
1792
  outline: none;
1994
1793
  }
1995
1794
  ._20YOA:disabled {
1996
- background-color: #F3F3F3;
1997
- color: #767676;
1795
+ background-color: var(--color-grey-100);
1796
+ color: var(--color-grey-400);
1998
1797
  }
1999
1798
 
2000
1799
  ._3kUSh {
2001
- border-color: #e76767 !important;
1800
+ border-color: var(--color-radish-400) !important;
2002
1801
  }
2003
1802
 
2004
1803
  ._3IU3Q {
2005
1804
  border-left: 0 !important;
2006
1805
  border-top-left-radius: 0 !important;
2007
1806
  border-bottom-left-radius: 0 !important;
2008
- color: #767676;
1807
+ color: var(--color-grey-400);
2009
1808
  }
2010
1809
 
2011
1810
  ._QXJOD {
@@ -2013,17 +1812,6 @@ Please ask a designer if you have questions about which colours to use.
2013
1812
  border-top-right-radius: 0 !important;
2014
1813
  border-bottom-right-radius: 0 !important;
2015
1814
  }
2016
- /*********************************
2017
- For new colours, see _colors.scss.
2018
- **********************************/
2019
- /* stylelint-disable color-no-hex */
2020
- /*
2021
- These are the colour variables to be used around the webapp.
2022
- The variables are set up to describe the color and number which represents the lightness of the color.
2023
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2024
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2025
- Please ask a designer if you have questions about which colours to use.
2026
- */
2027
1815
  ._2sg0c {
2028
1816
  position: relative;
2029
1817
  }
@@ -2047,8 +1835,8 @@ Please ask a designer if you have questions about which colours to use.
2047
1835
  width: 14px;
2048
1836
  background-color: transparent;
2049
1837
  border-radius: 4px;
2050
- border: 1px solid #D5D5D5;
2051
- box-shadow: inset 0 1px 4px -2px #D5D5D5;
1838
+ border: 1px solid var(--color-grey-200);
1839
+ box-shadow: inset 0 1px 4px -2px var(--color-grey-200);
2052
1840
  }
2053
1841
  ._2mA8e::after {
2054
1842
  position: absolute;
@@ -2069,34 +1857,23 @@ input:checked ~ ._2mA8e::after {
2069
1857
  top: 1px;
2070
1858
  width: 4px;
2071
1859
  height: 8px;
2072
- border: solid #fff;
1860
+ border: solid var(--color-white);
2073
1861
  border-width: 0 2px 2px 0;
2074
1862
  background-color: transparent;
2075
1863
  border-radius: 0;
2076
1864
  }
2077
1865
  input:focus-visible + ._2mA8e {
2078
- outline: #6d87dd solid 1px;
1866
+ outline: var(--color-eggplant-400) solid 1px;
2079
1867
  }
2080
1868
  input:disabled + ._2mA8e {
2081
- background-color: #F3F3F3;
2082
- border: 1px solid #D5D5D5;
1869
+ background-color: var(--color-grey-100);
1870
+ border: 1px solid var(--color-grey-200);
2083
1871
  }
2084
1872
  input:disabled + ._2mA8e::after {
2085
1873
  box-shadow: none;
2086
1874
  border: solid #9f9f9f !important;
2087
1875
  border-width: 0 2px 2px 0 !important;
2088
1876
  }
2089
- /*********************************
2090
- For new colours, see _colors.scss.
2091
- **********************************/
2092
- /* stylelint-disable color-no-hex */
2093
- /*
2094
- These are the colour variables to be used around the webapp.
2095
- The variables are set up to describe the color and number which represents the lightness of the color.
2096
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2097
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2098
- Please ask a designer if you have questions about which colours to use.
2099
- */
2100
1877
  ._g6T-p {
2101
1878
  position: relative;
2102
1879
  }
@@ -2116,17 +1893,17 @@ Please ask a designer if you have questions about which colours to use.
2116
1893
  display: flex;
2117
1894
  align-items: center;
2118
1895
  justify-content: center;
2119
- background-color: #fff;
1896
+ background-color: var(--color-white);
2120
1897
  font-size: 14px;
2121
1898
  font-weight: 600;
2122
1899
  padding: 8px;
2123
- border: 1px solid #D5D5D5;
1900
+ border: 1px solid var(--color-grey-200);
2124
1901
  border-radius: 25px;
2125
1902
  min-height: 38px;
2126
1903
  min-width: 60px;
2127
1904
  text-align: center;
2128
1905
  vertical-align: middle;
2129
- color: #464646;
1906
+ color: var(--color-grey-500);
2130
1907
  -webkit-user-select: none;
2131
1908
  -moz-user-select: none;
2132
1909
  -ms-user-select: none;
@@ -2136,50 +1913,39 @@ Please ask a designer if you have questions about which colours to use.
2136
1913
  box-sizing: border-box;
2137
1914
  }
2138
1915
  input:hover ~ ._1i2AX {
2139
- background-color: #D5D5D5;
2140
- border-color: #D5D5D5;
1916
+ background-color: var(--color-grey-200);
1917
+ border-color: var(--color-grey-200);
2141
1918
  }
2142
1919
  input:checked:hover ~ ._1i2AX {
2143
- background-color: #e16840;
2144
- border-color: #e16840;
1920
+ background-color: var(--color-tangerine-500);
1921
+ border-color: var(--color-tangerine-500);
2145
1922
  }
2146
1923
  input:checked ~ ._1i2AX {
2147
- background-color: #fb7448;
2148
- border-color: #fb7448;
2149
- color: #fff;
1924
+ background-color: var(--color-tangerine-400);
1925
+ border-color: var(--color-tangerine-400);
1926
+ color: var(--color-white);
2150
1927
  }
2151
1928
  input:disabled + ._1i2AX {
2152
- background-color: #F3F3F3;
2153
- border-color: #F3F3F3;
2154
- color: #767676;
1929
+ background-color: var(--color-grey-100);
1930
+ border-color: var(--color-grey-100);
1931
+ color: var(--color-grey-400);
2155
1932
  }
2156
1933
  input:disabled:checked + ._1i2AX {
2157
- background-color: #e16840;
2158
- border-color: #e16840;
2159
- color: #fff;
1934
+ background-color: var(--color-tangerine-500);
1935
+ border-color: var(--color-tangerine-500);
1936
+ color: var(--color-white);
2160
1937
  }
2161
1938
  input:focus-visible + ._1i2AX {
2162
- border: 1px solid #6d87dd;
2163
- box-shadow: 0 0 8px #a7b7ea;
1939
+ border: 1px solid var(--color-eggplant-400);
1940
+ box-shadow: 0 0 8px var(--color-eggplant-300);
2164
1941
  outline: none;
2165
1942
  }
2166
- /*********************************
2167
- For new colours, see _colors.scss.
2168
- **********************************/
2169
- /* stylelint-disable color-no-hex */
2170
- /*
2171
- These are the colour variables to be used around the webapp.
2172
- The variables are set up to describe the color and number which represents the lightness of the color.
2173
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2174
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2175
- Please ask a designer if you have questions about which colours to use.
2176
- */
2177
1943
  ._1WGz2 {
2178
1944
  line-height: normal;
2179
1945
  padding: 0;
2180
1946
  width: auto;
2181
1947
  float: none;
2182
- color: #464646;
1948
+ color: var(--color-grey-500);
2183
1949
  font-family: "Proxima Nova", sans-serif;
2184
1950
  font-weight: 600;
2185
1951
  font-size: 14px;
@@ -2197,29 +1963,18 @@ Please ask a designer if you have questions about which colours to use.
2197
1963
  padding: 0;
2198
1964
  width: auto;
2199
1965
  float: none;
2200
- color: #464646;
1966
+ color: var(--color-grey-500);
2201
1967
  font-family: "Proxima Nova", sans-serif;
2202
1968
  font-weight: 600;
2203
1969
  font-size: 14px;
2204
1970
  min-height: 16px;
2205
1971
  }
2206
- /*********************************
2207
- For new colours, see _colors.scss.
2208
- **********************************/
2209
- /* stylelint-disable color-no-hex */
2210
- /*
2211
- These are the colour variables to be used around the webapp.
2212
- The variables are set up to describe the color and number which represents the lightness of the color.
2213
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2214
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2215
- Please ask a designer if you have questions about which colours to use.
2216
- */
2217
1972
  ._1Tw96 {
2218
1973
  line-height: normal;
2219
1974
  padding: 0;
2220
1975
  width: auto;
2221
1976
  float: none;
2222
- color: #464646;
1977
+ color: var(--color-grey-500);
2223
1978
  font-family: "Proxima Nova", sans-serif;
2224
1979
  font-weight: 600;
2225
1980
  font-size: 14px;
@@ -2236,7 +1991,7 @@ Please ask a designer if you have questions about which colours to use.
2236
1991
  display: block;
2237
1992
  text-align: center;
2238
1993
  height: 100%;
2239
- color: #767676;
1994
+ color: var(--color-grey-400);
2240
1995
  }
2241
1996
  ._2OGKE input {
2242
1997
  border: 0px;
@@ -2250,12 +2005,12 @@ Please ask a designer if you have questions about which colours to use.
2250
2005
  position: absolute;
2251
2006
  }
2252
2007
  input:checked ~ ._23M9k {
2253
- border-color: #a7b7ea;
2254
- box-shadow: 0 0 8px #a7b7ea;
2008
+ border-color: var(--color-eggplant-300);
2009
+ box-shadow: 0 0 8px var(--color-eggplant-300);
2255
2010
  cursor: default;
2256
2011
  }
2257
2012
  ._23M9k {
2258
- border: 1px solid #D5D5D5;
2013
+ border: 1px solid var(--color-grey-200);
2259
2014
  border-radius: 4px;
2260
2015
  padding: 16px;
2261
2016
  display: block;
@@ -2267,30 +2022,19 @@ input:checked ~ ._23M9k {
2267
2022
  word-break: break-word;
2268
2023
  }
2269
2024
  ._23M9k:hover {
2270
- box-shadow: 0 0 8px #D5D5D5;
2025
+ box-shadow: 0 0 8px var(--color-grey-200);
2271
2026
  }
2272
2027
  ._1r-Wg {
2273
2028
  line-height: normal;
2274
2029
  padding: 0;
2275
2030
  width: auto;
2276
2031
  float: none;
2277
- color: #464646;
2032
+ color: var(--color-grey-500);
2278
2033
  font-family: "Proxima Nova", sans-serif;
2279
2034
  font-weight: 600;
2280
2035
  font-size: 14px;
2281
2036
  min-height: 16px;
2282
2037
  }
2283
- /*********************************
2284
- For new colours, see _colors.scss.
2285
- **********************************/
2286
- /* stylelint-disable color-no-hex */
2287
- /*
2288
- These are the colour variables to be used around the webapp.
2289
- The variables are set up to describe the color and number which represents the lightness of the color.
2290
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2291
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2292
- Please ask a designer if you have questions about which colours to use.
2293
- */
2294
2038
  ._1Clmp {
2295
2039
  position: relative;
2296
2040
  }
@@ -2314,8 +2058,8 @@ Please ask a designer if you have questions about which colours to use.
2314
2058
  width: 14px;
2315
2059
  background-color: transparent;
2316
2060
  border-radius: 50%;
2317
- border: 1px solid #D5D5D5;
2318
- box-shadow: inset 0 1px 4px -2px #D5D5D5;
2061
+ border: 1px solid var(--color-grey-200);
2062
+ box-shadow: inset 0 1px 4px -2px var(--color-grey-200);
2319
2063
  }
2320
2064
  ._1tMq-::after {
2321
2065
  position: absolute;
@@ -2335,16 +2079,16 @@ input:checked ~ ._1tMq-::after {
2335
2079
  top: 5px;
2336
2080
  width: 4px;
2337
2081
  height: 4px;
2338
- background-color: #fff;
2082
+ background-color: var(--color-white);
2339
2083
  border: none;
2340
2084
  border-radius: 50%;
2341
2085
  }
2342
2086
  input:focus-visible + ._1tMq- {
2343
- outline: #6d87dd solid 1px;
2087
+ outline: var(--color-eggplant-400) solid 1px;
2344
2088
  }
2345
2089
  input:disabled + ._1tMq- {
2346
- background-color: #F3F3F3;
2347
- border: 1px solid #D5D5D5;
2090
+ background-color: var(--color-grey-100);
2091
+ border: 1px solid var(--color-grey-200);
2348
2092
  }
2349
2093
  input:disabled + ._1tMq-::after {
2350
2094
  box-shadow: none;
@@ -2354,49 +2098,38 @@ input:disabled + ._1tMq-::after {
2354
2098
  left: 4px;
2355
2099
  top: 4px;
2356
2100
  }
2357
- /*********************************
2358
- For new colours, see _colors.scss.
2359
- **********************************/
2360
- /* stylelint-disable color-no-hex */
2361
- /*
2362
- These are the colour variables to be used around the webapp.
2363
- The variables are set up to describe the color and number which represents the lightness of the color.
2364
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2365
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2366
- Please ask a designer if you have questions about which colours to use.
2367
- */
2368
2101
  ._18Rzv {
2369
2102
  padding: 7px;
2370
2103
  line-height: 22px;
2371
2104
  border-radius: 4px;
2372
2105
  font-size: 14px;
2373
2106
  font-family: "Proxima Nova", sans-serif;
2374
- color: #464646;
2107
+ color: var(--color-grey-500);
2375
2108
  box-shadow: none;
2376
- border: 1px solid #D5D5D5;
2109
+ border: 1px solid var(--color-grey-200);
2377
2110
  margin: 0;
2378
2111
  flex: 1;
2379
2112
  min-width: 90px;
2380
2113
  }
2381
2114
  ._18Rzv:focus {
2382
- border: 1px solid #6d87dd;
2383
- box-shadow: 0 0 8px #a7b7ea;
2115
+ border: 1px solid var(--color-eggplant-400);
2116
+ box-shadow: 0 0 8px var(--color-eggplant-300);
2384
2117
  outline: none;
2385
2118
  }
2386
2119
  ._18Rzv:disabled {
2387
- background-color: #F3F3F3;
2388
- color: #767676;
2120
+ background-color: var(--color-grey-100);
2121
+ color: var(--color-grey-400);
2389
2122
  }
2390
2123
 
2391
2124
  ._3eD7t {
2392
- border-color: #e76767 !important;
2125
+ border-color: var(--color-radish-400) !important;
2393
2126
  }
2394
2127
 
2395
2128
  ._2evrG {
2396
2129
  border-left: 0 !important;
2397
2130
  border-top-left-radius: 0 !important;
2398
2131
  border-bottom-left-radius: 0 !important;
2399
- color: #767676;
2132
+ color: var(--color-grey-400);
2400
2133
  }
2401
2134
 
2402
2135
  ._-MgeO {
@@ -2417,94 +2150,61 @@ Please ask a designer if you have questions about which colours to use.
2417
2150
  right: 7px;
2418
2151
  top: 7px;
2419
2152
  }
2420
- /*********************************
2421
- For new colours, see _colors.scss.
2422
- **********************************/
2423
- /* stylelint-disable color-no-hex */
2424
- /*
2425
- These are the colour variables to be used around the webapp.
2426
- The variables are set up to describe the color and number which represents the lightness of the color.
2427
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2428
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2429
- Please ask a designer if you have questions about which colours to use.
2430
- */
2431
2153
  ._U0krC {
2432
- color: #D5D5D5;
2154
+ color: var(--color-grey-200);
2433
2155
  font-family: "Proxima Nova", sans-serif;
2434
2156
  }
2435
2157
 
2436
2158
  ._2XIl4 {
2437
- color: #767676;
2159
+ color: var(--color-grey-400);
2438
2160
  font-family: "Proxima Nova", sans-serif;
2439
2161
  }
2440
2162
  ._1cDCR {
2441
2163
  flex: 1;
2442
2164
  display: "flex";
2443
2165
  }
2444
- /*********************************
2445
- For new colours, see _colors.scss.
2446
- **********************************/
2447
- /* stylelint-disable color-no-hex */
2448
- /*
2449
- These are the colour variables to be used around the webapp.
2450
- The variables are set up to describe the color and number which represents the lightness of the color.
2451
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2452
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2453
- Please ask a designer if you have questions about which colours to use.
2454
- */
2455
2166
  ._uC4zU {
2456
2167
  font-family: "Proxima Nova", sans-serif;
2457
2168
  font-weight: 16px;
2458
2169
  font-size: 14px;
2459
- color: #767676;
2170
+ color: var(--color-grey-400);
2460
2171
  display: flex;
2461
2172
  flex-direction: column;
2462
2173
  justify-content: center;
2463
2174
  padding: 8px 12px;
2464
2175
  }
2465
- /*********************************
2466
- For new colours, see _colors.scss.
2467
- **********************************/
2468
- /* stylelint-disable color-no-hex */
2469
- /*
2470
- These are the colour variables to be used around the webapp.
2471
- The variables are set up to describe the color and number which represents the lightness of the color.
2472
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2473
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2474
- Please ask a designer if you have questions about which colours to use.
2475
- */
2476
2176
  ._1btTx, ._1Sc9D {
2477
2177
  padding: 7px;
2478
2178
  line-height: 22px;
2479
2179
  border-radius: 4px;
2480
2180
  font-size: 14px;
2481
2181
  font-family: "Proxima Nova", sans-serif;
2482
- color: #464646;
2182
+ color: var(--color-grey-500);
2483
2183
  box-shadow: none;
2484
- border: 1px solid #D5D5D5;
2184
+ border: 1px solid var(--color-grey-200);
2485
2185
  margin: 0;
2486
2186
  flex: 1;
2487
2187
  min-width: 90px;
2488
2188
  }
2489
2189
  ._1btTx:focus, ._1Sc9D:focus {
2490
- border: 1px solid #6d87dd;
2491
- box-shadow: 0 0 8px #a7b7ea;
2190
+ border: 1px solid var(--color-eggplant-400);
2191
+ box-shadow: 0 0 8px var(--color-eggplant-300);
2492
2192
  outline: none;
2493
2193
  }
2494
2194
  ._1btTx:disabled, ._1Sc9D:disabled {
2495
- background-color: #F3F3F3;
2496
- color: #767676;
2195
+ background-color: var(--color-grey-100);
2196
+ color: var(--color-grey-400);
2497
2197
  }
2498
2198
 
2499
2199
  ._2feYp, ._2SNat {
2500
- border-color: #e76767 !important;
2200
+ border-color: var(--color-radish-400) !important;
2501
2201
  }
2502
2202
 
2503
2203
  ._E18JV, ._jLolW {
2504
2204
  border-left: 0 !important;
2505
2205
  border-top-left-radius: 0 !important;
2506
2206
  border-bottom-left-radius: 0 !important;
2507
- color: #767676;
2207
+ color: var(--color-grey-400);
2508
2208
  }
2509
2209
 
2510
2210
  ._27J43, ._3eTNi {
@@ -2518,17 +2218,6 @@ Please ask a designer if you have questions about which colours to use.
2518
2218
  padding-bottom: 6px;
2519
2219
  width: 100%;
2520
2220
  }
2521
- /*********************************
2522
- For new colours, see _colors.scss.
2523
- **********************************/
2524
- /* stylelint-disable color-no-hex */
2525
- /*
2526
- These are the colour variables to be used around the webapp.
2527
- The variables are set up to describe the color and number which represents the lightness of the color.
2528
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2529
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2530
- Please ask a designer if you have questions about which colours to use.
2531
- */
2532
2221
  ._1Ini2 {
2533
2222
  flex: 1;
2534
2223
  display: flex;
@@ -2566,21 +2255,21 @@ Please ask a designer if you have questions about which colours to use.
2566
2255
  left: auto;
2567
2256
  display: inline-block;
2568
2257
  margin-top: 2px;
2569
- color: #949494;
2258
+ color: var(--color-grey-300);
2570
2259
  cursor: pointer;
2571
2260
  background-image: none;
2572
2261
  width: 0;
2573
2262
  height: 0;
2574
2263
  border-top: 7px solid transparent;
2575
2264
  border-bottom: 7px solid transparent;
2576
- border-right: 10px solid #464646;
2265
+ border-right: 10px solid var(--color-grey-500);
2577
2266
  margin-right: 1.5em;
2578
2267
  }
2579
2268
  ._6kNi3:hover {
2580
2269
  opacity: 0.8;
2581
2270
  }
2582
2271
  ._6kNi3:hover {
2583
- border-right-color: #767676;
2272
+ border-right-color: var(--color-grey-400);
2584
2273
  }
2585
2274
 
2586
2275
  ._13W_e {
@@ -2590,21 +2279,21 @@ Please ask a designer if you have questions about which colours to use.
2590
2279
  left: auto;
2591
2280
  display: inline-block;
2592
2281
  margin-top: 2px;
2593
- color: #949494;
2282
+ color: var(--color-grey-300);
2594
2283
  cursor: pointer;
2595
2284
  background-image: none;
2596
2285
  width: 0;
2597
2286
  height: 0;
2598
2287
  border-top: 7px solid transparent;
2599
2288
  border-bottom: 7px solid transparent;
2600
- border-left: 10px solid #464646;
2289
+ border-left: 10px solid var(--color-grey-500);
2601
2290
  }
2602
2291
  ._13W_e:hover {
2603
2292
  opacity: 0.8;
2604
2293
  }
2605
2294
  ._13W_e:hover {
2606
2295
  opacity: 0.8;
2607
- border-left-color: #767676;
2296
+ border-left-color: var(--color-grey-400);
2608
2297
  }
2609
2298
 
2610
2299
  ._1FeSY {
@@ -2635,7 +2324,7 @@ Please ask a designer if you have questions about which colours to use.
2635
2324
  ._AMbAo > div {
2636
2325
  font-weight: 600;
2637
2326
  font-size: 20px;
2638
- color: #464646;
2327
+ color: var(--color-grey-500);
2639
2328
  }
2640
2329
 
2641
2330
  ._1LEst {
@@ -2650,7 +2339,7 @@ Please ask a designer if you have questions about which colours to use.
2650
2339
  ._1C5ry {
2651
2340
  display: table-cell;
2652
2341
  padding: 0.5em;
2653
- color: #767676;
2342
+ color: var(--color-grey-400);
2654
2343
  text-align: center;
2655
2344
  font-size: 0.875em;
2656
2345
  }
@@ -2677,7 +2366,7 @@ Please ask a designer if you have questions about which colours to use.
2677
2366
  cursor: pointer;
2678
2367
  }
2679
2368
  ._mG73F:not(._wJ6Cb):not(._2pgnH):not(._MtLaz):not(._CRqyX):hover {
2680
- background: #F3F3F3;
2369
+ background: var(--color-grey-100);
2681
2370
  }
2682
2371
 
2683
2372
  ._2KG9- {
@@ -2685,31 +2374,31 @@ Please ask a designer if you have questions about which colours to use.
2685
2374
  }
2686
2375
 
2687
2376
  ._2JA2y {
2688
- color: #fb7448;
2377
+ color: var(--color-tangerine-400);
2689
2378
  font-weight: 700;
2690
2379
  }
2691
2380
 
2692
2381
  ._MtLaz:not(._2pgnH):not(._CRqyX) {
2693
- background-color: #fdd5c8;
2694
- color: #fb7448;
2382
+ background-color: var(--color-tangerine-200);
2383
+ color: var(--color-tangerine-400);
2695
2384
  }
2696
2385
 
2697
2386
  ._MtLaz:not(._2pgnH):not(._CRqyX):hover {
2698
- background-color: #fb7448;
2699
- color: #fff;
2387
+ background-color: var(--color-tangerine-400);
2388
+ color: var(--color-white);
2700
2389
  }
2701
2390
 
2702
2391
  ._MtLaz._2JA2y:hover {
2703
- color: #fff;
2392
+ color: var(--color-white);
2704
2393
  }
2705
2394
 
2706
2395
  ._2pgnH {
2707
- color: #D5D5D5;
2396
+ color: var(--color-grey-200);
2708
2397
  cursor: default;
2709
2398
  }
2710
2399
 
2711
2400
  ._CRqyX:not(._2pgnH) {
2712
- color: #949494;
2401
+ color: var(--color-grey-300);
2713
2402
  cursor: default;
2714
2403
  }
2715
2404
 
@@ -2721,7 +2410,7 @@ Please ask a designer if you have questions about which colours to use.
2721
2410
  position: absolute;
2722
2411
  left: 0;
2723
2412
  z-index: 1;
2724
- background: #fff;
2413
+ background: var(--color-white);
2725
2414
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
2726
2415
  }
2727
2416
 
@@ -2729,57 +2418,46 @@ Please ask a designer if you have questions about which colours to use.
2729
2418
  display: table-cell;
2730
2419
  padding: 0.5em;
2731
2420
  min-width: 1em;
2732
- border-right: 1px solid #D5D5D5;
2733
- color: #949494;
2421
+ border-right: 1px solid var(--color-grey-200);
2422
+ color: var(--color-grey-300);
2734
2423
  vertical-align: middle;
2735
2424
  text-align: right;
2736
2425
  font-size: 0.75em;
2737
2426
  cursor: pointer;
2738
2427
  }
2739
2428
 
2740
- /*********************************
2741
- For new colours, see _colors.scss.
2742
- **********************************/
2743
- /* stylelint-disable color-no-hex */
2744
- /*
2745
- These are the colour variables to be used around the webapp.
2746
- The variables are set up to describe the color and number which represents the lightness of the color.
2747
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2748
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2749
- Please ask a designer if you have questions about which colours to use.
2750
- */
2751
2429
  ._25rf7, ._3qVhi input, ._3qVhi {
2752
2430
  padding: 7px;
2753
2431
  line-height: 22px;
2754
2432
  border-radius: 4px;
2755
2433
  font-size: 14px;
2756
2434
  font-family: "Proxima Nova", sans-serif;
2757
- color: #464646;
2435
+ color: var(--color-grey-500);
2758
2436
  box-shadow: none;
2759
- border: 1px solid #D5D5D5;
2437
+ border: 1px solid var(--color-grey-200);
2760
2438
  margin: 0;
2761
2439
  flex: 1;
2762
2440
  min-width: 90px;
2763
2441
  }
2764
2442
  ._25rf7:focus, ._3qVhi input:focus, ._3qVhi:focus {
2765
- border: 1px solid #6d87dd;
2766
- box-shadow: 0 0 8px #a7b7ea;
2443
+ border: 1px solid var(--color-eggplant-400);
2444
+ box-shadow: 0 0 8px var(--color-eggplant-300);
2767
2445
  outline: none;
2768
2446
  }
2769
2447
  ._25rf7:disabled, ._3qVhi input:disabled, ._3qVhi:disabled {
2770
- background-color: #F3F3F3;
2771
- color: #767676;
2448
+ background-color: var(--color-grey-100);
2449
+ color: var(--color-grey-400);
2772
2450
  }
2773
2451
 
2774
2452
  ._2M9Ud {
2775
- border-color: #e76767 !important;
2453
+ border-color: var(--color-radish-400) !important;
2776
2454
  }
2777
2455
 
2778
2456
  ._3TUb2 {
2779
2457
  border-left: 0 !important;
2780
2458
  border-top-left-radius: 0 !important;
2781
2459
  border-bottom-left-radius: 0 !important;
2782
- color: #767676;
2460
+ color: var(--color-grey-400);
2783
2461
  }
2784
2462
 
2785
2463
  ._foqL0 {
@@ -2795,10 +2473,10 @@ Please ask a designer if you have questions about which colours to use.
2795
2473
  align-items: center;
2796
2474
  }
2797
2475
  ._3df9R {
2798
- border-color: #e76767 !important;
2476
+ border-color: var(--color-radish-400) !important;
2799
2477
  }
2800
2478
  ._2Nkht {
2801
- background-color: #F3F3F3;
2479
+ background-color: var(--color-grey-100);
2802
2480
  }
2803
2481
  ._3qVhi input {
2804
2482
  border: none;
@@ -2808,7 +2486,7 @@ Please ask a designer if you have questions about which colours to use.
2808
2486
  }
2809
2487
  ._3qVhi input:focus {
2810
2488
  border: none;
2811
- box-shadow: inset 0 -2px 0 #fb7448;
2489
+ box-shadow: inset 0 -2px 0 var(--color-tangerine-400);
2812
2490
  outline: none;
2813
2491
  border-radius: 0;
2814
2492
  border-top-right-radius: 4px;
@@ -2829,39 +2507,27 @@ Please ask a designer if you have questions about which colours to use.
2829
2507
  }
2830
2508
 
2831
2509
  ._mG73F._MtLaz.from {
2832
- background-color: #fb7448;
2833
- color: #fff;
2510
+ background-color: var(--color-tangerine-400);
2511
+ color: var(--color-white);
2834
2512
  border-top-left-radius: 50%;
2835
2513
  border-bottom-left-radius: 50%;
2836
2514
  }
2837
2515
 
2838
2516
  ._mG73F._MtLaz.to {
2839
- background-color: #fb7448;
2840
- color: #fff;
2517
+ background-color: var(--color-tangerine-400);
2518
+ color: var(--color-white);
2841
2519
  border-top-right-radius: 50%;
2842
2520
  border-bottom-right-radius: 50%;
2843
2521
  }
2844
2522
 
2845
2523
  ._MtLaz:not(._2pgnH) {
2846
- background-color: #fdd5c8;
2847
- color: #fb7448;
2848
- }
2849
- /*********************************
2850
- For new colours, see _colors.scss.
2851
- **********************************/
2852
- /* stylelint-disable color-no-hex */
2853
- /*
2854
- These are the colour variables to be used around the webapp.
2855
- The variables are set up to describe the color and number which represents the lightness of the color.
2856
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2857
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2858
- Please ask a designer if you have questions about which colours to use.
2859
- */
2524
+ background-color: var(--color-tangerine-200);
2525
+ color: var(--color-tangerine-400);
2526
+ }
2860
2527
  ._vgLin {
2861
2528
  padding: 16px 12px 16px 12px;
2862
- background: #F3F3F3;
2863
- margin-left: 1px;
2864
- margin-right: 1px;
2529
+ background: var(--color-grey-100);
2530
+ margin: 1px;
2865
2531
  position: relative;
2866
2532
  border-radius: 3px;
2867
2533
  box-shadow: 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
@@ -2871,22 +2537,22 @@ Please ask a designer if you have questions about which colours to use.
2871
2537
  font-weight: 600;
2872
2538
  font-size: 14px;
2873
2539
  line-height: 16px;
2874
- color: #464646;
2540
+ color: var(--color-grey-500);
2875
2541
  }
2876
2542
 
2877
2543
  ._3n6S7 {
2878
2544
  font-size: 14px;
2879
2545
  line-height: 16px;
2880
2546
  flex-grow: 1;
2881
- color: #464646;
2547
+ color: var(--color-grey-500);
2882
2548
  }
2883
2549
  ._3n6S7 a {
2884
2550
  text-decoration: underline;
2885
- color: #464646;
2551
+ color: var(--color-grey-500);
2886
2552
  }
2887
2553
  ._3n6S7 a:hover {
2888
2554
  cursor: pointer;
2889
- color: #323232;
2555
+ color: var(--color-grey-600);
2890
2556
  }
2891
2557
 
2892
2558
  ._2pMYs {
@@ -2894,43 +2560,43 @@ Please ask a designer if you have questions about which colours to use.
2894
2560
  }
2895
2561
 
2896
2562
  ._ON6Eg {
2897
- background: #f6fdff;
2898
- box-shadow: 0 0 0 1px rgba(81, 172, 199, 0.15), 0 1px 3px 0 rgba(81, 172, 199, 0.25);
2563
+ background: rgb(var(--color-blueberry-100-rgb));
2564
+ box-shadow: 0 0 0 1px rgba(var(--color-blueberry-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-blueberry-500-rgb), 0.25);
2899
2565
  }
2900
2566
  ._ON6Eg ._1-D-E {
2901
- color: #51acc7;
2567
+ color: rgb(var(--color-blueberry-500-rgb));
2902
2568
  }
2903
2569
 
2904
2570
  ._1FFZh {
2905
- background: #ecfaf8;
2906
- box-shadow: 0 0 0 1px rgba(53, 172, 154, 0.15), 0 1px 3px 0 rgba(53, 172, 154, 0.25);
2571
+ background: rgb(var(--color-mint-100-rgb));
2572
+ box-shadow: 0 0 0 1px rgba(var(--color-mint-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-mint-500-rgb), 0.25);
2907
2573
  }
2908
2574
  ._1FFZh ._1-D-E {
2909
- color: #35ac9a;
2575
+ color: rgb(var(--color-mint-500-rgb));
2910
2576
  }
2911
2577
 
2912
2578
  ._2R34O {
2913
- background: #fcf0f0;
2914
- box-shadow: 0 0 0 1px rgba(207, 92, 92, 0.15), 0 1px 3px 0 rgba(207, 92, 92, 0.25);
2579
+ background: rgb(var(--color-radish-100-rgb));
2580
+ box-shadow: 0 0 0 1px rgba(var(--color-radish-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-radish-500-rgb), 0.25);
2915
2581
  }
2916
2582
  ._2R34O ._1-D-E {
2917
- color: #cf5c5c;
2583
+ color: rgb(var(--color-radish-500-rgb));
2918
2584
  }
2919
2585
 
2920
2586
  ._3Cfhe {
2921
- background: #fff9ed;
2922
- box-shadow: 0 0 0 1px rgba(229, 178, 66, 0.15), 0 1px 3px 0 rgba(229, 178, 66, 0.25);
2587
+ background: rgb(var(--color-banana-100-rgb));
2588
+ box-shadow: 0 0 0 1px rgba(var(--color-banana-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-banana-500-rgb), 0.25);
2923
2589
  }
2924
2590
  ._3Cfhe ._1-D-E {
2925
- color: #e5b242;
2591
+ color: rgb(var(--color-banana-500-rgb));
2926
2592
  }
2927
2593
 
2928
2594
  ._1SIOw {
2929
- background: #f0f3fb;
2930
- box-shadow: 0 0 0 1px rgba(97, 121, 198, 0.15), 0 1px 3px 0 rgba(97, 121, 198, 0.25);
2595
+ background: rgb(var(--color-eggplant-100-rgb));
2596
+ box-shadow: 0 0 0 1px rgba(var(--color-eggplant-500-rgb), 0.15), 0 1px 3px 0 rgba(var(--color-eggplant-500-rgb), 0.25);
2931
2597
  }
2932
2598
  ._1SIOw ._1-D-E {
2933
- color: #6179c6;
2599
+ color: rgb(var(--color-eggplant-500-rgb));
2934
2600
  }
2935
2601
 
2936
2602
  ._3SNQ1 {
@@ -2953,39 +2619,17 @@ Please ask a designer if you have questions about which colours to use.
2953
2619
  align-items: center;
2954
2620
  min-height: 38px;
2955
2621
  }
2956
- /*********************************
2957
- For new colours, see _colors.scss.
2958
- **********************************/
2959
- /* stylelint-disable color-no-hex */
2960
- /*
2961
- These are the colour variables to be used around the webapp.
2962
- The variables are set up to describe the color and number which represents the lightness of the color.
2963
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2964
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2965
- Please ask a designer if you have questions about which colours to use.
2966
- */
2967
2622
  ._1jqm8 {
2968
2623
  font-size: 12px;
2969
2624
  line-height: 12px;
2970
- color: #464646;
2971
- }
2972
- /*********************************
2973
- For new colours, see _colors.scss.
2974
- **********************************/
2975
- /* stylelint-disable color-no-hex */
2976
- /*
2977
- These are the colour variables to be used around the webapp.
2978
- The variables are set up to describe the color and number which represents the lightness of the color.
2979
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
2980
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
2981
- Please ask a designer if you have questions about which colours to use.
2982
- */
2625
+ color: var(--color-grey-500);
2626
+ }
2983
2627
  ._2f81N {
2984
2628
  display: inline-flex;
2985
- background-color: #fb7448;
2629
+ background-color: var(--color-tangerine-400);
2986
2630
  height: 20px;
2987
2631
  min-width: 20px;
2988
- color: #fff;
2632
+ color: var(--color-white);
2989
2633
  text-align: center;
2990
2634
  line-height: 20px;
2991
2635
  border-radius: 20px;
@@ -2994,41 +2638,30 @@ Please ask a designer if you have questions about which colours to use.
2994
2638
  font-weight: normal;
2995
2639
  padding: 0 6px;
2996
2640
  align-items: center;
2997
- border: 1px solid #fff;
2641
+ border: 1px solid var(--color-white);
2998
2642
  }
2999
2643
  ._2f81N svg {
3000
- fill: #fff;
2644
+ fill: var(--color-white);
3001
2645
  }
3002
2646
  ._2g1GI {
3003
- background-color: #ffc74a;
2647
+ background-color: var(--color-banana-400);
3004
2648
  }
3005
2649
  ._2zLnM {
3006
- background-color: #e76767;
2650
+ background-color: var(--color-radish-400);
3007
2651
  }
3008
2652
  ._27QOo {
3009
- background-color: #3abda9;
2653
+ background-color: var(--color-mint-400);
3010
2654
  }
3011
2655
  ._2gmsM {
3012
- background-color: #5bc0de;
3013
- }
3014
- /*********************************
3015
- For new colours, see _colors.scss.
3016
- **********************************/
3017
- /* stylelint-disable color-no-hex */
3018
- /*
3019
- These are the colour variables to be used around the webapp.
3020
- The variables are set up to describe the color and number which represents the lightness of the color.
3021
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
3022
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
3023
- Please ask a designer if you have questions about which colours to use.
3024
- */
2656
+ background-color: var(--color-blueberry-400);
2657
+ }
3025
2658
  ._2wJGB {
3026
2659
  display: flex;
3027
2660
  justify-content: center;
3028
2661
  align-items: center;
3029
2662
  text-align: center;
3030
2663
  font-family: "Proxima Nova", sans-serif;
3031
- color: #fff;
2664
+ color: var(--color-white);
3032
2665
  border-radius: 50%;
3033
2666
  width: 20px;
3034
2667
  height: 20px;
@@ -3036,7 +2669,7 @@ Please ask a designer if you have questions about which colours to use.
3036
2669
  overflow: hidden;
3037
2670
  }
3038
2671
  ._2wJGB svg {
3039
- fill: #fff;
2672
+ fill: var(--color-white);
3040
2673
  }
3041
2674
  ._2wJGB img {
3042
2675
  height: inherit;
@@ -3086,17 +2719,6 @@ Please ask a designer if you have questions about which colours to use.
3086
2719
  width: 80%;
3087
2720
  padding-top: 25%;
3088
2721
  }
3089
- /*********************************
3090
- For new colours, see _colors.scss.
3091
- **********************************/
3092
- /* stylelint-disable color-no-hex */
3093
- /*
3094
- These are the colour variables to be used around the webapp.
3095
- The variables are set up to describe the color and number which represents the lightness of the color.
3096
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
3097
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
3098
- Please ask a designer if you have questions about which colours to use.
3099
- */
3100
2722
  ._1fIeV {
3101
2723
  font-size: 12px;
3102
2724
  font-weight: 600;
@@ -3108,40 +2730,29 @@ Please ask a designer if you have questions about which colours to use.
3108
2730
  text-transform: uppercase;
3109
2731
  }
3110
2732
  ._V4byU {
3111
- background-color: #fdd5c8;
3112
- color: #96452b;
2733
+ background-color: var(--color-tangerine-200);
2734
+ color: var(--color-tangerine-600);
3113
2735
  }
3114
2736
  ._37gN9 {
3115
- background-color: #c6f1eb;
3116
- color: #277e71;
2737
+ background-color: var(--color-mint-200);
2738
+ color: var(--color-mint-600);
3117
2739
  }
3118
2740
  ._Tw7tp {
3119
- background-color: #d3dbf4;
3120
- color: #415184;
2741
+ background-color: var(--color-eggplant-200);
2742
+ color: var(--color-eggplant-600);
3121
2743
  }
3122
2744
  ._t94VZ {
3123
- background-color: #ffeec9;
3124
- color: #99772c;
2745
+ background-color: var(--color-banana-200);
2746
+ color: var(--color-banana-600);
3125
2747
  }
3126
2748
  ._3SmeO {
3127
- background-color: #ceecf5;
3128
- color: #367385;
2749
+ background-color: var(--color-blueberry-200);
2750
+ color: var(--color-blueberry-600);
3129
2751
  }
3130
2752
  ._2eoX0 {
3131
- background-color: #f7d1d1;
3132
- color: #8a3d3d;
3133
- }
3134
- /*********************************
3135
- For new colours, see _colors.scss.
3136
- **********************************/
3137
- /* stylelint-disable color-no-hex */
3138
- /*
3139
- These are the colour variables to be used around the webapp.
3140
- The variables are set up to describe the color and number which represents the lightness of the color.
3141
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
3142
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
3143
- Please ask a designer if you have questions about which colours to use.
3144
- */
2753
+ background-color: var(--color-radish-200);
2754
+ color: var(--color-radish-600);
2755
+ }
3145
2756
  ._23q4Y {
3146
2757
  font-size: 14px;
3147
2758
  font-weight: 600;
@@ -3156,73 +2767,56 @@ Please ask a designer if you have questions about which colours to use.
3156
2767
  text-transform: capitalize;
3157
2768
  }
3158
2769
  ._niDEM {
3159
- background-color: #D5D5D5;
3160
- color: #323232;
2770
+ background-color: var(--color-grey-200);
2771
+ color: var(--color-grey-600);
3161
2772
  }
3162
2773
  ._IwDRB {
3163
- background-color: #c6f1eb;
3164
- color: #277e71;
2774
+ background-color: var(--color-mint-200);
2775
+ color: var(--color-mint-600);
3165
2776
  }
3166
2777
  ._MPji- {
3167
- background-color: #f7d1d1;
3168
- color: #8a3d3d;
2778
+ background-color: var(--color-radish-200);
2779
+ color: var(--color-radish-600);
3169
2780
  }
3170
2781
  ._3S2m8 {
3171
- background-color: #ffeec9;
3172
- color: #99772c;
2782
+ background-color: var(--color-banana-200);
2783
+ color: var(--color-banana-600);
3173
2784
  }
3174
2785
  ._2G3ML {
3175
- background-color: #ceecf5;
3176
- color: #367385;
3177
- }
3178
- /*********************************
3179
- For new colours, see _colors.scss.
3180
- **********************************/
3181
- /* stylelint-disable color-no-hex */
3182
- /*
3183
- These are the colour variables to be used around the webapp.
3184
- The variables are set up to describe the color and number which represents the lightness of the color.
3185
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
3186
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
3187
- Please ask a designer if you have questions about which colours to use.
3188
- */
3189
- /* stylelint-disable color-no-hex */
3190
- /*
3191
- These are the colour variables to be used around the webapp.
3192
- The variables are set up to describe the color and number which represents the lightness of the color.
3193
- The smaller the number the lighter the color. So $eggplant-100 would be light purple and $eggplant-600 would be dark purple.
3194
- The base colour is the default colour and is numbered with 400. If someone says "use Tangerine" they are referring to the base color.
3195
- Please ask a designer if you have questions about which colours to use.
3196
- */
2786
+ background-color: var(--color-blueberry-200);
2787
+ color: var(--color-blueberry-600);
2788
+ }
3197
2789
  ._29ZIp {
3198
2790
  position: relative;
3199
2791
  }
3200
2792
  ._3Q8NT {
3201
2793
  box-sizing: border-box;
3202
2794
  background: white;
3203
- border: 1px solid #D5D5D5;
2795
+ border: 1px solid var(--color-grey-200);
3204
2796
  border-radius: 8px;
3205
2797
  width: 100%;
3206
2798
  height: 100%;
3207
2799
  padding: 24px 20px;
3208
- color: #464646;
2800
+ color: var(--color-grey-500);
3209
2801
  }
3210
2802
  ._2Fah6 {
3211
2803
  cursor: pointer;
3212
2804
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.05);
3213
2805
  transition: all ease-in-out 150ms;
2806
+ font: inherit;
2807
+ text-align: inherit;
3214
2808
  }
3215
2809
  ._2Fah6:not(._SGno0):hover {
3216
2810
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.2);
3217
- background-color: #F3F3F3;
2811
+ background-color: var(--color-grey-100);
3218
2812
  }
3219
2813
  ._2Fah6:focus {
3220
- box-shadow: 0 0 8px #a7b7ea;
2814
+ box-shadow: 0 0 8px var(--color-eggplant-300);
3221
2815
  outline: none;
3222
2816
  }
3223
2817
  ._1zqRN {
3224
- border-color: #6d87dd;
3225
- box-shadow: 0 0 8px #a7b7ea;
2818
+ border-color: var(--color-eggplant-400);
2819
+ box-shadow: 0 0 8px var(--color-eggplant-300);
3226
2820
  }
3227
2821
  ._3Hwms {
3228
2822
  min-height: 56px;
@@ -3232,14 +2826,4 @@ Please ask a designer if you have questions about which colours to use.
3232
2826
  z-index: 1;
3233
2827
  right: 8px;
3234
2828
  top: 8px;
3235
- }
3236
-
3237
- button {
3238
- background: none;
3239
- color: inherit;
3240
- border: none;
3241
- padding: 0;
3242
- font: inherit;
3243
- cursor: pointer;
3244
- text-align: inherit;
3245
2829
  }