@gitlab/ui 112.2.3 → 112.3.0

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 (32) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/components/base/nav/nav.js +89 -5
  3. package/dist/index.css +2 -2
  4. package/dist/index.css.map +1 -1
  5. package/dist/tailwind.css +1 -1
  6. package/dist/tokens/build/js/tokens.dark.js +80 -80
  7. package/dist/tokens/build/js/tokens.js +179 -179
  8. package/dist/tokens/css/tokens.css +50 -50
  9. package/dist/tokens/css/tokens.dark.css +25 -25
  10. package/dist/tokens/js/tokens.dark.js +80 -80
  11. package/dist/tokens/js/tokens.js +179 -179
  12. package/dist/tokens/json/tokens.dark.json +130 -130
  13. package/dist/tokens/json/tokens.json +229 -229
  14. package/dist/tokens/scss/_tokens.dark.scss +25 -25
  15. package/dist/tokens/scss/_tokens.scss +50 -50
  16. package/dist/tokens/tailwind/tokens.cjs +47 -47
  17. package/package.json +2 -2
  18. package/src/components/base/nav/nav.md +182 -4
  19. package/src/components/base/nav/nav.vue +60 -7
  20. package/src/tokens/build/css/tokens.css +50 -50
  21. package/src/tokens/build/css/tokens.dark.css +25 -25
  22. package/src/tokens/build/figma/constants.tokens.json +25 -25
  23. package/src/tokens/build/figma/deprecated.tokens.json +25 -25
  24. package/src/tokens/build/js/tokens.dark.js +80 -80
  25. package/src/tokens/build/js/tokens.js +179 -179
  26. package/src/tokens/build/json/tokens.dark.json +130 -130
  27. package/src/tokens/build/json/tokens.json +229 -229
  28. package/src/tokens/build/scss/_tokens.dark.scss +25 -25
  29. package/src/tokens/build/scss/_tokens.scss +50 -50
  30. package/src/tokens/build/tailwind/tokens.cjs +47 -47
  31. package/src/tokens/constant/color.tokens.json +25 -25
  32. package/src/tokens/deprecated/deprecated.color.tokens.json +25 -25
@@ -1,17 +1,70 @@
1
1
  <script>
2
- import { BNav } from '../../../vendor/bootstrap-vue/src/components/nav/nav';
3
-
4
2
  export default {
5
3
  name: 'GlNav',
6
- components: {
7
- BNav,
4
+ props: {
5
+ /**
6
+ * Align the nav items in the nav: 'start' (or 'left'), 'center', 'end' (or 'right')
7
+ */
8
+ align: { type: String, required: false, default: '' },
9
+ /**
10
+ * Set this prop when the nav is placed inside a card header
11
+ */
12
+ cardHeader: { type: Boolean, required: false, default: false },
13
+ /**
14
+ * Proportionately fills all horizontal space with nav items.
15
+ * All horizontal space is occupied, but not every nav item has the same width
16
+ */
17
+ fill: { type: Boolean, required: false, default: false },
18
+ /**
19
+ * Fills all horizontal space with nav items, but unlike 'fill', every nav item will be the same width
20
+ */
21
+ justified: { type: Boolean, required: false, default: false },
22
+ /**
23
+ * Renders the nav items with the appearance of pill buttons
24
+ */
25
+ pills: { type: Boolean, required: false, default: false },
26
+ /**
27
+ * Makes the nav smaller
28
+ */
29
+ small: { type: Boolean, required: false, default: false },
30
+ /**
31
+ * Renders the nav items with the appearance of tabs
32
+ */
33
+ tabs: { type: Boolean, required: false, default: false },
34
+ /**
35
+ * Specify the HTML tag to render instead of the default tag
36
+ */
37
+ tag: { type: String, required: false, default: 'ul' },
38
+ },
39
+ computed: {
40
+ justifyContent() {
41
+ if (!this.align) return '';
42
+
43
+ const alignMapping = {
44
+ left: 'start',
45
+ right: 'end',
46
+ };
47
+
48
+ return `justify-content-${alignMapping[this.align] || this.align}`;
49
+ },
50
+ classes() {
51
+ return {
52
+ 'nav-tabs': this.tabs,
53
+ 'nav-pills': this.pills && !this.tabs,
54
+ 'card-header-tabs': this.cardHeader && this.tabs,
55
+ 'card-header-pills': this.cardHeader && this.pills && !this.tabs,
56
+ 'nav-fill': this.fill,
57
+ 'nav-justified': this.justified,
58
+ [this.justifyContent]: this.align,
59
+ small: this.small,
60
+ };
61
+ },
8
62
  },
9
- inheritAttrs: false,
10
63
  };
11
64
  </script>
12
65
 
13
66
  <template>
14
- <b-nav v-bind="$attrs" v-on="$listeners">
67
+ <component :is="tag" class="nav" :class="classes" v-on="$listeners">
15
68
  <slot></slot>
16
- </b-nav>
69
+ </component>
17
70
  </template>
@@ -24,11 +24,11 @@
24
24
  --gl-color-blue-300: #63a6e9;
25
25
  --gl-color-blue-400: #428fdc;
26
26
  --gl-color-blue-500: #1f75cb;
27
- --gl-color-blue-600: #1068bf;
28
- --gl-color-blue-700: #0b5cad;
29
- --gl-color-blue-800: #064787;
30
- --gl-color-blue-900: #033464;
31
- --gl-color-blue-950: #002850;
27
+ --gl-color-blue-600: #2f68b4;
28
+ --gl-color-blue-700: #2f5ca0;
29
+ --gl-color-blue-800: #284779;
30
+ --gl-color-blue-900: #213454;
31
+ --gl-color-blue-950: #1d283e;
32
32
  --gl-color-neutral-0: #fff;
33
33
  --gl-color-neutral-10: #fbfafd;
34
34
  --gl-color-neutral-50: #ececef;
@@ -49,44 +49,44 @@
49
49
  --gl-color-green-300: #52b87a;
50
50
  --gl-color-green-400: #2da160;
51
51
  --gl-color-green-500: #108548;
52
- --gl-color-green-600: #217645;
53
- --gl-color-green-700: #24663b;
54
- --gl-color-green-800: #0d532a;
55
- --gl-color-green-900: #0a4020;
56
- --gl-color-green-950: #072b15;
52
+ --gl-color-green-600: #2f7549;
53
+ --gl-color-green-700: #306440;
54
+ --gl-color-green-800: #225131;
55
+ --gl-color-green-900: #1e3e28;
56
+ --gl-color-green-950: #17291c;
57
57
  --gl-color-orange-50: #fdf1dd;
58
58
  --gl-color-orange-100: #f5d9a8;
59
59
  --gl-color-orange-200: #e9be74;
60
60
  --gl-color-orange-300: #d99530;
61
61
  --gl-color-orange-400: #c17d10;
62
62
  --gl-color-orange-500: #ab6100;
63
- --gl-color-orange-600: #9e5400;
64
- --gl-color-orange-700: #8f4700;
65
- --gl-color-orange-800: #703800;
66
- --gl-color-orange-900: #5c2900;
67
- --gl-color-orange-950: #421f00;
63
+ --gl-color-orange-600: #995715;
64
+ --gl-color-orange-700: #894b16;
65
+ --gl-color-orange-800: #693c14;
66
+ --gl-color-orange-900: #532e16;
67
+ --gl-color-orange-950: #382315;
68
68
  --gl-color-purple-50: #f4f0ff;
69
69
  --gl-color-purple-100: #e1d8f9;
70
70
  --gl-color-purple-200: #cbbbf2;
71
71
  --gl-color-purple-300: #ac93e6;
72
72
  --gl-color-purple-400: #9475db;
73
73
  --gl-color-purple-500: #7b58cf;
74
- --gl-color-purple-600: #694cc0;
75
- --gl-color-purple-700: #5943b6;
76
- --gl-color-purple-800: #453894;
77
- --gl-color-purple-900: #2f2a6b;
78
- --gl-color-purple-950: #232150;
74
+ --gl-color-purple-600: #6a4fb4;
75
+ --gl-color-purple-700: #5c47a6;
76
+ --gl-color-purple-800: #493c83;
77
+ --gl-color-purple-900: #342d59;
78
+ --gl-color-purple-950: #27243e;
79
79
  --gl-color-red-50: #fcf1ef;
80
80
  --gl-color-red-100: #fdd4cd;
81
81
  --gl-color-red-200: #fcb5aa;
82
82
  --gl-color-red-300: #f6806d;
83
83
  --gl-color-red-400: #ec5941;
84
84
  --gl-color-red-500: #dd2b0e;
85
- --gl-color-red-600: #c91c00;
86
- --gl-color-red-700: #ae1800;
87
- --gl-color-red-800: #8d1300;
88
- --gl-color-red-900: #660e00;
89
- --gl-color-red-950: #4d0a00;
85
+ --gl-color-red-600: #c02f12;
86
+ --gl-color-red-700: #a32c12;
87
+ --gl-color-red-800: #812713;
88
+ --gl-color-red-900: #582014;
89
+ --gl-color-red-950: #3e1a14;
90
90
  --gl-color-data-green-50: #ddfab7;
91
91
  --gl-color-data-green-100: #c6ed94;
92
92
  --gl-color-data-green-200: #b0d97b;
@@ -413,11 +413,11 @@
413
413
  --blue-300: #63a6e9;
414
414
  --blue-400: #428fdc;
415
415
  --blue-500: #1f75cb;
416
- --blue-600: #1068bf;
417
- --blue-700: #0b5cad;
418
- --blue-800: #064787;
419
- --blue-900: #033464;
420
- --blue-950: #002850;
416
+ --blue-600: #2f68b4;
417
+ --blue-700: #2f5ca0;
418
+ --blue-800: #284779;
419
+ --blue-900: #213454;
420
+ --blue-950: #1d283e;
421
421
  --gray-10: #fbfafd;
422
422
  --gray-50: #ececef;
423
423
  --gray-100: #dcdcde;
@@ -436,44 +436,44 @@
436
436
  --green-300: #52b87a;
437
437
  --green-400: #2da160;
438
438
  --green-500: #108548;
439
- --green-600: #217645;
440
- --green-700: #24663b;
441
- --green-800: #0d532a;
442
- --green-900: #0a4020;
443
- --green-950: #072b15;
439
+ --green-600: #2f7549;
440
+ --green-700: #306440;
441
+ --green-800: #225131;
442
+ --green-900: #1e3e28;
443
+ --green-950: #17291c;
444
444
  --orange-50: #fdf1dd;
445
445
  --orange-100: #f5d9a8;
446
446
  --orange-200: #e9be74;
447
447
  --orange-300: #d99530;
448
448
  --orange-400: #c17d10;
449
449
  --orange-500: #ab6100;
450
- --orange-600: #9e5400;
451
- --orange-700: #8f4700;
452
- --orange-800: #703800;
453
- --orange-900: #5c2900;
454
- --orange-950: #421f00;
450
+ --orange-600: #995715;
451
+ --orange-700: #894b16;
452
+ --orange-800: #693c14;
453
+ --orange-900: #532e16;
454
+ --orange-950: #382315;
455
455
  --purple-50: #f4f0ff;
456
456
  --purple-100: #e1d8f9;
457
457
  --purple-200: #cbbbf2;
458
458
  --purple-300: #ac93e6;
459
459
  --purple-400: #9475db;
460
460
  --purple-500: #7b58cf;
461
- --purple-600: #694cc0;
462
- --purple-700: #5943b6;
463
- --purple-800: #453894;
464
- --purple-900: #2f2a6b;
465
- --purple-950: #232150;
461
+ --purple-600: #6a4fb4;
462
+ --purple-700: #5c47a6;
463
+ --purple-800: #493c83;
464
+ --purple-900: #342d59;
465
+ --purple-950: #27243e;
466
466
  --red-50: #fcf1ef;
467
467
  --red-100: #fdd4cd;
468
468
  --red-200: #fcb5aa;
469
469
  --red-300: #f57f6c;
470
470
  --red-400: #ec5941;
471
471
  --red-500: #dd2b0e;
472
- --red-600: #c91c00;
473
- --red-700: #ae1800;
474
- --red-800: #8d1300;
475
- --red-900: #660e00;
476
- --red-950: #4d0a00;
472
+ --red-600: #c02f12;
473
+ --red-700: #a32c12;
474
+ --red-800: #812713;
475
+ --red-900: #582014;
476
+ --red-950: #3e1a14;
477
477
  --brand-charcoal: #171321; /* Use color.brand-charcoal instead. */
478
478
  --brand-orange-01: #fca326; /* Use color.brand-orange.01p instead. */
479
479
  --brand-orange-02: #fc6d26; /* Use color.brand-orange.02p instead. */
@@ -24,11 +24,11 @@
24
24
  --gl-color-blue-300: #63a6e9;
25
25
  --gl-color-blue-400: #428fdc;
26
26
  --gl-color-blue-500: #1f75cb;
27
- --gl-color-blue-600: #1068bf;
28
- --gl-color-blue-700: #0b5cad;
29
- --gl-color-blue-800: #064787;
30
- --gl-color-blue-900: #033464;
31
- --gl-color-blue-950: #002850;
27
+ --gl-color-blue-600: #2f68b4;
28
+ --gl-color-blue-700: #2f5ca0;
29
+ --gl-color-blue-800: #284779;
30
+ --gl-color-blue-900: #213454;
31
+ --gl-color-blue-950: #1d283e;
32
32
  --gl-color-neutral-0: #fff;
33
33
  --gl-color-neutral-10: #fbfafd;
34
34
  --gl-color-neutral-50: #ececef;
@@ -49,44 +49,44 @@
49
49
  --gl-color-green-300: #52b87a;
50
50
  --gl-color-green-400: #2da160;
51
51
  --gl-color-green-500: #108548;
52
- --gl-color-green-600: #217645;
53
- --gl-color-green-700: #24663b;
54
- --gl-color-green-800: #0d532a;
55
- --gl-color-green-900: #0a4020;
56
- --gl-color-green-950: #072b15;
52
+ --gl-color-green-600: #2f7549;
53
+ --gl-color-green-700: #306440;
54
+ --gl-color-green-800: #225131;
55
+ --gl-color-green-900: #1e3e28;
56
+ --gl-color-green-950: #17291c;
57
57
  --gl-color-orange-50: #fdf1dd;
58
58
  --gl-color-orange-100: #f5d9a8;
59
59
  --gl-color-orange-200: #e9be74;
60
60
  --gl-color-orange-300: #d99530;
61
61
  --gl-color-orange-400: #c17d10;
62
62
  --gl-color-orange-500: #ab6100;
63
- --gl-color-orange-600: #9e5400;
64
- --gl-color-orange-700: #8f4700;
65
- --gl-color-orange-800: #703800;
66
- --gl-color-orange-900: #5c2900;
67
- --gl-color-orange-950: #421f00;
63
+ --gl-color-orange-600: #995715;
64
+ --gl-color-orange-700: #894b16;
65
+ --gl-color-orange-800: #693c14;
66
+ --gl-color-orange-900: #532e16;
67
+ --gl-color-orange-950: #382315;
68
68
  --gl-color-purple-50: #f4f0ff;
69
69
  --gl-color-purple-100: #e1d8f9;
70
70
  --gl-color-purple-200: #cbbbf2;
71
71
  --gl-color-purple-300: #ac93e6;
72
72
  --gl-color-purple-400: #9475db;
73
73
  --gl-color-purple-500: #7b58cf;
74
- --gl-color-purple-600: #694cc0;
75
- --gl-color-purple-700: #5943b6;
76
- --gl-color-purple-800: #453894;
77
- --gl-color-purple-900: #2f2a6b;
78
- --gl-color-purple-950: #232150;
74
+ --gl-color-purple-600: #6a4fb4;
75
+ --gl-color-purple-700: #5c47a6;
76
+ --gl-color-purple-800: #493c83;
77
+ --gl-color-purple-900: #342d59;
78
+ --gl-color-purple-950: #27243e;
79
79
  --gl-color-red-50: #fcf1ef;
80
80
  --gl-color-red-100: #fdd4cd;
81
81
  --gl-color-red-200: #fcb5aa;
82
82
  --gl-color-red-300: #f6806d;
83
83
  --gl-color-red-400: #ec5941;
84
84
  --gl-color-red-500: #dd2b0e;
85
- --gl-color-red-600: #c91c00;
86
- --gl-color-red-700: #ae1800;
87
- --gl-color-red-800: #8d1300;
88
- --gl-color-red-900: #660e00;
89
- --gl-color-red-950: #4d0a00;
85
+ --gl-color-red-600: #c02f12;
86
+ --gl-color-red-700: #a32c12;
87
+ --gl-color-red-800: #812713;
88
+ --gl-color-red-900: #582014;
89
+ --gl-color-red-950: #3e1a14;
90
90
  --gl-color-data-green-50: #ddfab7;
91
91
  --gl-color-data-green-100: #c6ed94;
92
92
  --gl-color-data-green-200: #b0d97b;
@@ -92,23 +92,23 @@
92
92
  "$type": "color"
93
93
  },
94
94
  "600": {
95
- "$value": "#1068bf",
95
+ "$value": "#2f68b4",
96
96
  "$type": "color"
97
97
  },
98
98
  "700": {
99
- "$value": "#0b5cad",
99
+ "$value": "#2f5ca0",
100
100
  "$type": "color"
101
101
  },
102
102
  "800": {
103
- "$value": "#064787",
103
+ "$value": "#284779",
104
104
  "$type": "color"
105
105
  },
106
106
  "900": {
107
- "$value": "#033464",
107
+ "$value": "#213454",
108
108
  "$type": "color"
109
109
  },
110
110
  "950": {
111
- "$value": "#002850",
111
+ "$value": "#1d283e",
112
112
  "$type": "color"
113
113
  }
114
114
  },
@@ -196,23 +196,23 @@
196
196
  "$type": "color"
197
197
  },
198
198
  "600": {
199
- "$value": "#217645",
199
+ "$value": "#2f7549",
200
200
  "$type": "color"
201
201
  },
202
202
  "700": {
203
- "$value": "#24663b",
203
+ "$value": "#306440",
204
204
  "$type": "color"
205
205
  },
206
206
  "800": {
207
- "$value": "#0d532a",
207
+ "$value": "#225131",
208
208
  "$type": "color"
209
209
  },
210
210
  "900": {
211
- "$value": "#0a4020",
211
+ "$value": "#1e3e28",
212
212
  "$type": "color"
213
213
  },
214
214
  "950": {
215
- "$value": "#072b15",
215
+ "$value": "#17291c",
216
216
  "$type": "color"
217
217
  }
218
218
  },
@@ -242,23 +242,23 @@
242
242
  "$type": "color"
243
243
  },
244
244
  "600": {
245
- "$value": "#9e5400",
245
+ "$value": "#995715",
246
246
  "$type": "color"
247
247
  },
248
248
  "700": {
249
- "$value": "#8f4700",
249
+ "$value": "#894b16",
250
250
  "$type": "color"
251
251
  },
252
252
  "800": {
253
- "$value": "#703800",
253
+ "$value": "#693c14",
254
254
  "$type": "color"
255
255
  },
256
256
  "900": {
257
- "$value": "#5c2900",
257
+ "$value": "#532e16",
258
258
  "$type": "color"
259
259
  },
260
260
  "950": {
261
- "$value": "#421f00",
261
+ "$value": "#382315",
262
262
  "$type": "color"
263
263
  }
264
264
  },
@@ -288,23 +288,23 @@
288
288
  "$type": "color"
289
289
  },
290
290
  "600": {
291
- "$value": "#694cc0",
291
+ "$value": "#6a4fb4",
292
292
  "$type": "color"
293
293
  },
294
294
  "700": {
295
- "$value": "#5943b6",
295
+ "$value": "#5c47a6",
296
296
  "$type": "color"
297
297
  },
298
298
  "800": {
299
- "$value": "#453894",
299
+ "$value": "#493c83",
300
300
  "$type": "color"
301
301
  },
302
302
  "900": {
303
- "$value": "#2f2a6b",
303
+ "$value": "#342d59",
304
304
  "$type": "color"
305
305
  },
306
306
  "950": {
307
- "$value": "#232150",
307
+ "$value": "#27243e",
308
308
  "$type": "color"
309
309
  }
310
310
  },
@@ -334,23 +334,23 @@
334
334
  "$type": "color"
335
335
  },
336
336
  "600": {
337
- "$value": "#c91c00",
337
+ "$value": "#c02f12",
338
338
  "$type": "color"
339
339
  },
340
340
  "700": {
341
- "$value": "#ae1800",
341
+ "$value": "#a32c12",
342
342
  "$type": "color"
343
343
  },
344
344
  "800": {
345
- "$value": "#8d1300",
345
+ "$value": "#812713",
346
346
  "$type": "color"
347
347
  },
348
348
  "900": {
349
- "$value": "#660e00",
349
+ "$value": "#582014",
350
350
  "$type": "color"
351
351
  },
352
352
  "950": {
353
- "$value": "#4d0a00",
353
+ "$value": "#3e1a14",
354
354
  "$type": "color"
355
355
  }
356
356
  },
@@ -1390,7 +1390,7 @@
1390
1390
  },
1391
1391
  "600": {
1392
1392
  "$value": {
1393
- "default": "#1068bf",
1393
+ "default": "#2f68b4",
1394
1394
  "dark": "#63a6e9"
1395
1395
  },
1396
1396
  "$type": "color",
@@ -1400,7 +1400,7 @@
1400
1400
  },
1401
1401
  "700": {
1402
1402
  "$value": {
1403
- "default": "#0b5cad",
1403
+ "default": "#2f5ca0",
1404
1404
  "dark": "#9dc7f1"
1405
1405
  },
1406
1406
  "$type": "color",
@@ -1410,7 +1410,7 @@
1410
1410
  },
1411
1411
  "800": {
1412
1412
  "$value": {
1413
- "default": "#064787",
1413
+ "default": "#284779",
1414
1414
  "dark": "#cbe2f9"
1415
1415
  },
1416
1416
  "$type": "color",
@@ -1420,7 +1420,7 @@
1420
1420
  },
1421
1421
  "900": {
1422
1422
  "$value": {
1423
- "default": "#033464",
1423
+ "default": "#213454",
1424
1424
  "dark": "#e9f3fc"
1425
1425
  },
1426
1426
  "$type": "color",
@@ -1430,7 +1430,7 @@
1430
1430
  },
1431
1431
  "950": {
1432
1432
  "$value": {
1433
- "default": "#002850",
1433
+ "default": "#1d283e",
1434
1434
  "dark": "#f2f9ff"
1435
1435
  },
1436
1436
  "$type": "color",
@@ -1630,7 +1630,7 @@
1630
1630
  },
1631
1631
  "600": {
1632
1632
  "$value": {
1633
- "default": "#217645",
1633
+ "default": "#2f7549",
1634
1634
  "dark": "#52b87a"
1635
1635
  },
1636
1636
  "$type": "color",
@@ -1640,7 +1640,7 @@
1640
1640
  },
1641
1641
  "700": {
1642
1642
  "$value": {
1643
- "default": "#24663b",
1643
+ "default": "#306440",
1644
1644
  "dark": "#91d4a8"
1645
1645
  },
1646
1646
  "$type": "color",
@@ -1650,7 +1650,7 @@
1650
1650
  },
1651
1651
  "800": {
1652
1652
  "$value": {
1653
- "default": "#0d532a",
1653
+ "default": "#225131",
1654
1654
  "dark": "#c3e6cd"
1655
1655
  },
1656
1656
  "$type": "color",
@@ -1660,7 +1660,7 @@
1660
1660
  },
1661
1661
  "900": {
1662
1662
  "$value": {
1663
- "default": "#0a4020",
1663
+ "default": "#1e3e28",
1664
1664
  "dark": "#ecf4ee"
1665
1665
  },
1666
1666
  "$type": "color",
@@ -1670,7 +1670,7 @@
1670
1670
  },
1671
1671
  "950": {
1672
1672
  "$value": {
1673
- "default": "#072b15",
1673
+ "default": "#17291c",
1674
1674
  "dark": "#f1fdf6"
1675
1675
  },
1676
1676
  "$type": "color",
@@ -1745,7 +1745,7 @@
1745
1745
  },
1746
1746
  "600": {
1747
1747
  "$value": {
1748
- "default": "#9e5400",
1748
+ "default": "#995715",
1749
1749
  "dark": "#d99530"
1750
1750
  },
1751
1751
  "$type": "color",
@@ -1755,7 +1755,7 @@
1755
1755
  },
1756
1756
  "700": {
1757
1757
  "$value": {
1758
- "default": "#8f4700",
1758
+ "default": "#894b16",
1759
1759
  "dark": "#e9be74"
1760
1760
  },
1761
1761
  "$type": "color",
@@ -1765,7 +1765,7 @@
1765
1765
  },
1766
1766
  "800": {
1767
1767
  "$value": {
1768
- "default": "#703800",
1768
+ "default": "#693c14",
1769
1769
  "dark": "#f5d9a8"
1770
1770
  },
1771
1771
  "$type": "color",
@@ -1775,7 +1775,7 @@
1775
1775
  },
1776
1776
  "900": {
1777
1777
  "$value": {
1778
- "default": "#5c2900",
1778
+ "default": "#532e16",
1779
1779
  "dark": "#fdf1dd"
1780
1780
  },
1781
1781
  "$type": "color",
@@ -1785,7 +1785,7 @@
1785
1785
  },
1786
1786
  "950": {
1787
1787
  "$value": {
1788
- "default": "#421f00",
1788
+ "default": "#382315",
1789
1789
  "dark": "#fff4e1"
1790
1790
  },
1791
1791
  "$type": "color",
@@ -1860,7 +1860,7 @@
1860
1860
  },
1861
1861
  "600": {
1862
1862
  "$value": {
1863
- "default": "#694cc0",
1863
+ "default": "#6a4fb4",
1864
1864
  "dark": "#9475db"
1865
1865
  },
1866
1866
  "$type": "color",
@@ -1870,7 +1870,7 @@
1870
1870
  },
1871
1871
  "700": {
1872
1872
  "$value": {
1873
- "default": "#5943b6",
1873
+ "default": "#5c47a6",
1874
1874
  "dark": "#ac93e6"
1875
1875
  },
1876
1876
  "$type": "color",
@@ -1880,7 +1880,7 @@
1880
1880
  },
1881
1881
  "800": {
1882
1882
  "$value": {
1883
- "default": "#453894",
1883
+ "default": "#493c83",
1884
1884
  "dark": "#cbbbf2"
1885
1885
  },
1886
1886
  "$type": "color",
@@ -1890,7 +1890,7 @@
1890
1890
  },
1891
1891
  "900": {
1892
1892
  "$value": {
1893
- "default": "#2f2a6b",
1893
+ "default": "#342d59",
1894
1894
  "dark": "#e1d8f9"
1895
1895
  },
1896
1896
  "$type": "color",
@@ -1900,7 +1900,7 @@
1900
1900
  },
1901
1901
  "950": {
1902
1902
  "$value": {
1903
- "default": "#232150",
1903
+ "default": "#27243e",
1904
1904
  "dark": "#f4f0ff"
1905
1905
  },
1906
1906
  "$type": "color",
@@ -1975,7 +1975,7 @@
1975
1975
  },
1976
1976
  "600": {
1977
1977
  "$value": {
1978
- "default": "#c91c00",
1978
+ "default": "#c02f12",
1979
1979
  "dark": "#f57f6c"
1980
1980
  },
1981
1981
  "$type": "color",
@@ -1985,7 +1985,7 @@
1985
1985
  },
1986
1986
  "700": {
1987
1987
  "$value": {
1988
- "default": "#ae1800",
1988
+ "default": "#a32c12",
1989
1989
  "dark": "#fcb5aa"
1990
1990
  },
1991
1991
  "$type": "color",
@@ -1995,7 +1995,7 @@
1995
1995
  },
1996
1996
  "800": {
1997
1997
  "$value": {
1998
- "default": "#8d1300",
1998
+ "default": "#812713",
1999
1999
  "dark": "#fdd4cd"
2000
2000
  },
2001
2001
  "$type": "color",
@@ -2005,7 +2005,7 @@
2005
2005
  },
2006
2006
  "900": {
2007
2007
  "$value": {
2008
- "default": "#660e00",
2008
+ "default": "#582014",
2009
2009
  "dark": "#fcf1ef"
2010
2010
  },
2011
2011
  "$type": "color",
@@ -2015,7 +2015,7 @@
2015
2015
  },
2016
2016
  "950": {
2017
2017
  "$value": {
2018
- "default": "#4d0a00",
2018
+ "default": "#3e1a14",
2019
2019
  "dark": "#fff4f3"
2020
2020
  },
2021
2021
  "$type": "color",