@gitlab/ui 64.16.0 → 64.18.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 (34) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/components/charts/discrete_scatter/discrete_scatter.js +2 -3
  3. package/dist/components/charts/heatmap/heatmap.js +4 -6
  4. package/dist/components/charts/legend/legend.js +2 -3
  5. package/dist/components/charts/line/line.js +2 -3
  6. package/dist/tokens/css/tokens.css +142 -0
  7. package/dist/tokens/css/tokens.dark.css +76 -0
  8. package/dist/tokens/js/tokens.dark.js +74 -0
  9. package/dist/tokens/js/tokens.js +140 -0
  10. package/dist/tokens/json/tokens.dark.grouped.json +139 -0
  11. package/dist/tokens/json/tokens.dark.json +2527 -0
  12. package/dist/tokens/json/tokens.grouped.json +139 -0
  13. package/dist/tokens/json/tokens.json +2527 -0
  14. package/dist/tokens/scss/_tokens.dark.scss +73 -0
  15. package/dist/tokens/scss/_tokens.scss +139 -0
  16. package/dist/utility_classes.css +1 -1
  17. package/dist/utility_classes.css.map +1 -1
  18. package/dist/utils/charts/config.js +3 -4
  19. package/dist/utils/charts/mock_data.js +3 -4
  20. package/dist/utils/charts/theme.js +25 -89
  21. package/package.json +8 -6
  22. package/src/components/charts/area/area.stories.js +3 -3
  23. package/src/components/charts/discrete_scatter/discrete_scatter.vue +2 -2
  24. package/src/components/charts/heatmap/heatmap.vue +4 -4
  25. package/src/components/charts/legend/legend.stories.js +2 -2
  26. package/src/components/charts/legend/legend.vue +2 -2
  27. package/src/components/charts/line/line.vue +2 -2
  28. package/src/scss/utilities.scss +8 -0
  29. package/src/scss/utility-mixins/border.scss +4 -0
  30. package/src/tokens/color.dark.tokens.json +359 -0
  31. package/src/tokens/color.tokens.json +709 -0
  32. package/src/utils/charts/config.js +3 -3
  33. package/src/utils/charts/mock_data.js +3 -3
  34. package/src/utils/charts/theme.js +152 -153
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [64.18.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v64.17.0...v64.18.0) (2023-07-04)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add border-gray-10 to mixins ([a02780c](https://gitlab.com/gitlab-org/gitlab-ui/commit/a02780c969c40aa82c8a29517a2df776c40e6e17))
7
+
8
+ # [64.17.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v64.16.0...v64.17.0) (2023-06-30)
9
+
10
+
11
+ ### Features
12
+
13
+ * **Tokens:** add initial color design tokens ([c4f43f5](https://gitlab.com/gitlab-org/gitlab-ui/commit/c4f43f55e7c548233a9d6622115f525187b98601))
14
+
1
15
  # [64.16.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v64.15.0...v64.16.0) (2023-06-29)
2
16
 
3
17
 
@@ -1,4 +1,5 @@
1
1
  import merge from 'lodash/merge';
2
+ import { GRAY_200 } from '../../../../dist/tokens/js/tokens';
2
3
  import { defaultChartOptions, dataZoomAdjustments, mergeSeriesToOptions } from '../../../utils/charts/config';
3
4
  import { colorFromDefaultPalette } from '../../../utils/charts/theme';
4
5
  import { debounceByAnimationFrame } from '../../../utils/utils';
@@ -8,8 +9,6 @@ import Chart from '../chart/chart';
8
9
  import ChartTooltip from '../tooltip/tooltip';
9
10
  import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
10
11
 
11
- const gray200 = '#bfbfc3';
12
-
13
12
  var script = {
14
13
  name: 'GlDiscreteScatterChart',
15
14
  components: {
@@ -97,7 +96,7 @@ var script = {
97
96
  alignWithLabel: true,
98
97
  show: true,
99
98
  lineStyle: {
100
- color: gray200
99
+ color: GRAY_200
101
100
  }
102
101
  },
103
102
  axisLabel: {
@@ -1,4 +1,5 @@
1
1
  import merge from 'lodash/merge';
2
+ import { GRAY_100, WHITE } from '../../../../dist/tokens/js/tokens';
2
3
  import { getDefaultTooltipContent } from '../../../utils/charts/config';
3
4
  import { TOOLTIP_LEFT_OFFSET, HEIGHT_AUTO_CLASSES } from '../../../utils/charts/constants';
4
5
  import { heatmapHues } from '../../../utils/charts/theme';
@@ -10,9 +11,6 @@ import ChartLegend from '../legend/legend';
10
11
  import ChartTooltip from '../tooltip/tooltip';
11
12
  import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
12
13
 
13
- const white = '#fff';
14
- const gray100 = '#dcdcde';
15
-
16
14
  //
17
15
  const defaultOptions = {
18
16
  visualMap: {
@@ -139,7 +137,7 @@ var script = {
139
137
  right: '32px',
140
138
  show: true,
141
139
  borderWidth: 0,
142
- backgroundColor: gray100
140
+ backgroundColor: GRAY_100
143
141
  },
144
142
  visualMap: {
145
143
  min,
@@ -163,7 +161,7 @@ var script = {
163
161
  show: true,
164
162
  interval: 0,
165
163
  lineStyle: {
166
- color: white,
164
+ color: WHITE,
167
165
  width: 2
168
166
  }
169
167
  },
@@ -190,7 +188,7 @@ var script = {
190
188
  show: true,
191
189
  interval: 0,
192
190
  lineStyle: {
193
- color: white,
191
+ color: WHITE,
194
192
  width: 2
195
193
  }
196
194
  }
@@ -1,4 +1,5 @@
1
1
  import * as echarts from 'echarts';
2
+ import { GRAY_200 } from '../../../../dist/tokens/js/tokens';
2
3
  import { defaultFontSize } from '../../../utils/charts/config';
3
4
  import { LEGEND_AVERAGE_TEXT, LEGEND_CURRENT_TEXT, LEGEND_MIN_TEXT, LEGEND_MAX_TEXT, LEGEND_LAYOUT_INLINE, LEGEND_LAYOUT_TABLE } from '../../../utils/charts/constants';
4
5
  import { engineeringNotation, average } from '../../../utils/number_utils';
@@ -6,8 +7,6 @@ import GlTruncate from '../../utilities/truncate/truncate';
6
7
  import GlChartSeriesLabel from '../series_label/series_label';
7
8
  import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
8
9
 
9
- const gray200 = '#bfbfc3';
10
-
11
10
  //
12
11
  var script = {
13
12
  name: 'GlChartLegend',
@@ -148,7 +147,7 @@ var script = {
148
147
  });
149
148
  },
150
149
  getColor(color, key) {
151
- return this.disabledSeries[key] ? gray200 : color;
150
+ return this.disabledSeries[key] ? GRAY_200 : color;
152
151
  },
153
152
  suppressLastActiveSeriesLabelToggle(_ref2) {
154
153
  let {
@@ -1,4 +1,5 @@
1
1
  import merge from 'lodash/merge';
2
+ import { GRAY_200 } from '../../../../dist/tokens/js/tokens';
2
3
  import { symbolSize, lineStyle, getThresholdConfig, generateAnnotationSeries, defaultChartOptions, dataZoomAdjustments, mergeSeriesToOptions, mergeAnnotationAxisToOptions, grid, getDefaultTooltipContent } from '../../../utils/charts/config';
3
4
  import { LEGEND_AVERAGE_TEXT, LEGEND_MAX_TEXT, LEGEND_MIN_TEXT, LEGEND_CURRENT_TEXT, LEGEND_LAYOUT_INLINE, LEGEND_LAYOUT_TABLE, DATA_TOOLTIP_LEFT_OFFSET, ANNOTATION_TOOLTIP_TOP_OFFSET, HEIGHT_AUTO_CLASSES } from '../../../utils/charts/constants';
4
5
  import { colorFromDefaultPalette } from '../../../utils/charts/theme';
@@ -10,8 +11,6 @@ import ChartLegend from '../legend/legend';
10
11
  import ChartTooltip from '../tooltip/tooltip';
11
12
  import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
12
13
 
13
- const gray200 = '#bfbfc3';
14
-
15
14
  //
16
15
  var script = {
17
16
  name: 'GlLineChart',
@@ -160,7 +159,7 @@ var script = {
160
159
  alignWithLabel: true,
161
160
  show: true,
162
161
  lineStyle: {
163
- color: gray200
162
+ color: GRAY_200
164
163
  }
165
164
  }
166
165
  },
@@ -0,0 +1,142 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Tue, 04 Jul 2023 11:29:36 GMT
4
+ */
5
+
6
+ :root {
7
+ --brand-gray-05: #2b2838;
8
+ --brand-gray-04: #45424d;
9
+ --brand-gray-03: #74717a;
10
+ --brand-gray-02: #a2a1a6;
11
+ --brand-gray-01: #d1d0d3;
12
+ --brand-purple-02: #7759c2;
13
+ --brand-purple-01: #a989f5;
14
+ --brand-orange-03: #e24329;
15
+ --brand-orange-02: #fc6d26;
16
+ --brand-orange-01: #fca326;
17
+ --brand-charcoal: #171321;
18
+ --data-viz-orange-950: #4b2707;
19
+ --data-viz-orange-900: #5e2f05;
20
+ --data-viz-orange-800: #6f3500;
21
+ --data-viz-orange-700: #92430a;
22
+ --data-viz-orange-600: #b14f18;
23
+ --data-viz-orange-500: #c95d2e;
24
+ --data-viz-orange-400: #e07e41;
25
+ --data-viz-orange-300: #e99b60;
26
+ --data-viz-orange-200: #eebd8c;
27
+ --data-viz-orange-100: #f5d6b3;
28
+ --data-viz-orange-50: #fae8d1;
29
+ --data-viz-magenta-950: #541d31;
30
+ --data-viz-magenta-900: #661e3a;
31
+ --data-viz-magenta-800: #7c214f;
32
+ --data-viz-magenta-700: #9a2e5d;
33
+ --data-viz-magenta-600: #b93d71;
34
+ --data-viz-magenta-500: #cf4d81;
35
+ --data-viz-magenta-400: #e86e9a;
36
+ --data-viz-magenta-300: #f88aaf;
37
+ --data-viz-magenta-200: #fcacc5;
38
+ --data-viz-magenta-100: #ffccdb;
39
+ --data-viz-magenta-50: #ffe3eb;
40
+ --data-viz-blue-950: #2a2b59;
41
+ --data-viz-blue-900: #303470;
42
+ --data-viz-blue-800: #374291;
43
+ --data-viz-blue-700: #3f51ae;
44
+ --data-viz-blue-600: #4e65cd;
45
+ --data-viz-blue-500: #617ae2;
46
+ --data-viz-blue-400: #7992f5;
47
+ --data-viz-blue-300: #97acff;
48
+ --data-viz-blue-200: #b7c6ff;
49
+ --data-viz-blue-100: #d2dcff;
50
+ --data-viz-blue-50: #e9ebff;
51
+ --data-viz-aqua-950: #00344b;
52
+ --data-viz-aqua-900: #004059;
53
+ --data-viz-aqua-800: #00516c;
54
+ --data-viz-aqua-700: #006381;
55
+ --data-viz-aqua-600: #007b9b;
56
+ --data-viz-aqua-500: #0090b1;
57
+ --data-viz-aqua-400: #00acc4;
58
+ --data-viz-aqua-300: #32c5d2;
59
+ --data-viz-aqua-200: #5edee3;
60
+ --data-viz-aqua-100: #93f2ef;
61
+ --data-viz-aqua-50: #b5fefd;
62
+ --data-viz-green-950: #133a03;
63
+ --data-viz-green-900: #1a4500;
64
+ --data-viz-green-800: #275600;
65
+ --data-viz-green-700: #366800;
66
+ --data-viz-green-600: #4e7f0e;
67
+ --data-viz-green-500: #619025;
68
+ --data-viz-green-400: #81ac41;
69
+ --data-viz-green-300: #94c25e;
70
+ --data-viz-green-200: #b0d97b;
71
+ --data-viz-green-100: #c6ed94;
72
+ --data-viz-green-50: #ddfab7;
73
+ --red-950: #4d0a00;
74
+ --red-900: #660e00;
75
+ --red-800: #8d1300;
76
+ --red-700: #ae1800;
77
+ --red-600: #c91c00;
78
+ --red-500: #dd2b0e;
79
+ --red-400: #ec5941;
80
+ --red-300: #f57f6c;
81
+ --red-200: #fcb5aa;
82
+ --red-100: #fdd4cd;
83
+ --red-50: #fcf1ef;
84
+ --purple-950: #232150;
85
+ --purple-900: #2f2a6b;
86
+ --purple-800: #453894;
87
+ --purple-700: #5943b6;
88
+ --purple-600: #694cc0;
89
+ --purple-500: #7b58cf;
90
+ --purple-400: #9475db;
91
+ --purple-300: #ac93e6;
92
+ --purple-200: #cbbbf2;
93
+ --purple-100: #e1d8f9;
94
+ --purple-50: #f4f0ff;
95
+ --orange-950: #421f00;
96
+ --orange-900: #5c2900;
97
+ --orange-800: #703800;
98
+ --orange-700: #8f4700;
99
+ --orange-600: #9e5400;
100
+ --orange-500: #ab6100;
101
+ --orange-400: #c17d10;
102
+ --orange-300: #d99530;
103
+ --orange-200: #e9be74;
104
+ --orange-100: #f5d9a8;
105
+ --orange-50: #fdf1dd;
106
+ --green-950: #072b15;
107
+ --green-900: #0a4020;
108
+ --green-800: #0d532a;
109
+ --green-700: #24663b;
110
+ --green-600: #217645;
111
+ --green-500: #108548;
112
+ --green-400: #2da160;
113
+ --green-300: #52b87a;
114
+ --green-200: #91d4a8;
115
+ --green-100: #c3e6cd;
116
+ --green-50: #ecf4ee;
117
+ --gray-950: #1f1e24;
118
+ --gray-900: #333238;
119
+ --gray-800: #434248;
120
+ --gray-700: #535158;
121
+ --gray-600: #626168;
122
+ --gray-500: #737278;
123
+ --gray-400: #89888d;
124
+ --gray-300: #a4a3a8;
125
+ --gray-200: #bfbfc3;
126
+ --gray-100: #dcdcde;
127
+ --gray-50: #ececef;
128
+ --gray-10: #fbfafd;
129
+ --blue-950: #002850;
130
+ --blue-900: #033464;
131
+ --blue-800: #064787;
132
+ --blue-700: #0b5cad;
133
+ --blue-600: #1068bf;
134
+ --blue-500: #1f75cb;
135
+ --blue-400: #428fdc;
136
+ --blue-300: #63a6e9;
137
+ --blue-200: #9dc7f1;
138
+ --blue-100: #cbe2f9;
139
+ --blue-50: #e9f3fc;
140
+ --white: #fff;
141
+ --black: #000;
142
+ }
@@ -0,0 +1,76 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Tue, 04 Jul 2023 11:29:36 GMT
4
+ */
5
+
6
+ :root {
7
+ --red-950: #fff4f3;
8
+ --red-900: #fcf1ef;
9
+ --red-800: #fdd4cd;
10
+ --red-700: #fcb5aa;
11
+ --red-600: #f57f6c;
12
+ --red-500: #ec5941;
13
+ --red-400: #dd2b0e;
14
+ --red-300: #c91c00;
15
+ --red-200: #ae1800;
16
+ --red-100: #8d1300;
17
+ --red-50: #660e00;
18
+ --purple-950: #f4f0ff;
19
+ --purple-900: #e1d8f9;
20
+ --purple-800: #cbbbf2;
21
+ --purple-700: #ac93e6;
22
+ --purple-600: #9475db;
23
+ --purple-500: #7b58cf;
24
+ --purple-400: #694cc0;
25
+ --purple-300: #5943b6;
26
+ --purple-200: #453894;
27
+ --purple-100: #2f2a6b;
28
+ --purple-50: #232150;
29
+ --orange-950: #fff4e1;
30
+ --orange-900: #fdf1dd;
31
+ --orange-800: #f5d9a8;
32
+ --orange-700: #e9be74;
33
+ --orange-600: #d99530;
34
+ --orange-500: #c17d10;
35
+ --orange-400: #ab6100;
36
+ --orange-300: #9e5400;
37
+ --orange-200: #8f4700;
38
+ --orange-100: #703800;
39
+ --orange-50: #5c2900;
40
+ --green-950: #f1fdf6;
41
+ --green-900: #ecf4ee;
42
+ --green-800: #c3e6cd;
43
+ --green-700: #91d4a8;
44
+ --green-600: #52b87a;
45
+ --green-500: #2da160;
46
+ --green-400: #108548;
47
+ --green-300: #217645;
48
+ --green-200: #24663b;
49
+ --green-100: #0d532a;
50
+ --green-50: #0a4020;
51
+ --gray-950: #fbfafd;
52
+ --gray-900: #ececef;
53
+ --gray-800: #dcdcde;
54
+ --gray-700: #bfbfc3;
55
+ --gray-600: #a4a3a8;
56
+ --gray-500: #89888d;
57
+ --gray-400: #737278;
58
+ --gray-300: #626168;
59
+ --gray-200: #535158;
60
+ --gray-100: #434248;
61
+ --gray-50: #333238;
62
+ --gray-10: #1f1e24;
63
+ --blue-950: #f2f9ff;
64
+ --blue-900: #e9f3fc;
65
+ --blue-800: #cbe2f9;
66
+ --blue-700: #9dc7f1;
67
+ --blue-600: #63a6e9;
68
+ --blue-500: #428fdc;
69
+ --blue-400: #1f75cb;
70
+ --blue-300: #1068bf;
71
+ --blue-200: #0b5cad;
72
+ --blue-100: #064787;
73
+ --blue-50: #033464;
74
+ --black: #fff;
75
+ --white: var(--gray-50);
76
+ }
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Tue, 04 Jul 2023 11:29:36 GMT
4
+ */
5
+
6
+ export const BLACK = "#fff";
7
+ export const WHITE = "#333238";
8
+ export const BLUE_50 = "#033464";
9
+ export const BLUE_100 = "#064787";
10
+ export const BLUE_200 = "#0b5cad";
11
+ export const BLUE_300 = "#1068bf";
12
+ export const BLUE_400 = "#1f75cb";
13
+ export const BLUE_500 = "#428fdc";
14
+ export const BLUE_600 = "#63a6e9";
15
+ export const BLUE_700 = "#9dc7f1";
16
+ export const BLUE_800 = "#cbe2f9";
17
+ export const BLUE_900 = "#e9f3fc";
18
+ export const BLUE_950 = "#f2f9ff";
19
+ export const GRAY_10 = "#1f1e24";
20
+ export const GRAY_50 = "#333238";
21
+ export const GRAY_100 = "#434248";
22
+ export const GRAY_200 = "#535158";
23
+ export const GRAY_300 = "#626168";
24
+ export const GRAY_400 = "#737278";
25
+ export const GRAY_500 = "#89888d";
26
+ export const GRAY_600 = "#a4a3a8";
27
+ export const GRAY_700 = "#bfbfc3";
28
+ export const GRAY_800 = "#dcdcde";
29
+ export const GRAY_900 = "#ececef";
30
+ export const GRAY_950 = "#fbfafd";
31
+ export const GREEN_50 = "#0a4020";
32
+ export const GREEN_100 = "#0d532a";
33
+ export const GREEN_200 = "#24663b";
34
+ export const GREEN_300 = "#217645";
35
+ export const GREEN_400 = "#108548";
36
+ export const GREEN_500 = "#2da160";
37
+ export const GREEN_600 = "#52b87a";
38
+ export const GREEN_700 = "#91d4a8";
39
+ export const GREEN_800 = "#c3e6cd";
40
+ export const GREEN_900 = "#ecf4ee";
41
+ export const GREEN_950 = "#f1fdf6";
42
+ export const ORANGE_50 = "#5c2900";
43
+ export const ORANGE_100 = "#703800";
44
+ export const ORANGE_200 = "#8f4700";
45
+ export const ORANGE_300 = "#9e5400";
46
+ export const ORANGE_400 = "#ab6100";
47
+ export const ORANGE_500 = "#c17d10";
48
+ export const ORANGE_600 = "#d99530";
49
+ export const ORANGE_700 = "#e9be74";
50
+ export const ORANGE_800 = "#f5d9a8";
51
+ export const ORANGE_900 = "#fdf1dd";
52
+ export const ORANGE_950 = "#fff4e1";
53
+ export const PURPLE_50 = "#232150";
54
+ export const PURPLE_100 = "#2f2a6b";
55
+ export const PURPLE_200 = "#453894";
56
+ export const PURPLE_300 = "#5943b6";
57
+ export const PURPLE_400 = "#694cc0";
58
+ export const PURPLE_500 = "#7b58cf";
59
+ export const PURPLE_600 = "#9475db";
60
+ export const PURPLE_700 = "#ac93e6";
61
+ export const PURPLE_800 = "#cbbbf2";
62
+ export const PURPLE_900 = "#e1d8f9";
63
+ export const PURPLE_950 = "#f4f0ff";
64
+ export const RED_50 = "#660e00";
65
+ export const RED_100 = "#8d1300";
66
+ export const RED_200 = "#ae1800";
67
+ export const RED_300 = "#c91c00";
68
+ export const RED_400 = "#dd2b0e";
69
+ export const RED_500 = "#ec5941";
70
+ export const RED_600 = "#f57f6c";
71
+ export const RED_700 = "#fcb5aa";
72
+ export const RED_800 = "#fdd4cd";
73
+ export const RED_900 = "#fcf1ef";
74
+ export const RED_950 = "#fff4f3";
@@ -0,0 +1,140 @@
1
+ /**
2
+ * Do not edit directly
3
+ * Generated on Tue, 04 Jul 2023 11:29:36 GMT
4
+ */
5
+
6
+ export const BLACK = "#000";
7
+ export const WHITE = "#fff";
8
+ export const BLUE_50 = "#e9f3fc";
9
+ export const BLUE_100 = "#cbe2f9";
10
+ export const BLUE_200 = "#9dc7f1";
11
+ export const BLUE_300 = "#63a6e9";
12
+ export const BLUE_400 = "#428fdc";
13
+ export const BLUE_500 = "#1f75cb";
14
+ export const BLUE_600 = "#1068bf";
15
+ export const BLUE_700 = "#0b5cad";
16
+ export const BLUE_800 = "#064787";
17
+ export const BLUE_900 = "#033464";
18
+ export const BLUE_950 = "#002850";
19
+ export const GRAY_10 = "#fbfafd";
20
+ export const GRAY_50 = "#ececef";
21
+ export const GRAY_100 = "#dcdcde";
22
+ export const GRAY_200 = "#bfbfc3";
23
+ export const GRAY_300 = "#a4a3a8";
24
+ export const GRAY_400 = "#89888d";
25
+ export const GRAY_500 = "#737278";
26
+ export const GRAY_600 = "#626168";
27
+ export const GRAY_700 = "#535158";
28
+ export const GRAY_800 = "#434248";
29
+ export const GRAY_900 = "#333238";
30
+ export const GRAY_950 = "#1f1e24";
31
+ export const GREEN_50 = "#ecf4ee";
32
+ export const GREEN_100 = "#c3e6cd";
33
+ export const GREEN_200 = "#91d4a8";
34
+ export const GREEN_300 = "#52b87a";
35
+ export const GREEN_400 = "#2da160";
36
+ export const GREEN_500 = "#108548";
37
+ export const GREEN_600 = "#217645";
38
+ export const GREEN_700 = "#24663b";
39
+ export const GREEN_800 = "#0d532a";
40
+ export const GREEN_900 = "#0a4020";
41
+ export const GREEN_950 = "#072b15";
42
+ export const ORANGE_50 = "#fdf1dd";
43
+ export const ORANGE_100 = "#f5d9a8";
44
+ export const ORANGE_200 = "#e9be74";
45
+ export const ORANGE_300 = "#d99530";
46
+ export const ORANGE_400 = "#c17d10";
47
+ export const ORANGE_500 = "#ab6100";
48
+ export const ORANGE_600 = "#9e5400";
49
+ export const ORANGE_700 = "#8f4700";
50
+ export const ORANGE_800 = "#703800";
51
+ export const ORANGE_900 = "#5c2900";
52
+ export const ORANGE_950 = "#421f00";
53
+ export const PURPLE_50 = "#f4f0ff";
54
+ export const PURPLE_100 = "#e1d8f9";
55
+ export const PURPLE_200 = "#cbbbf2";
56
+ export const PURPLE_300 = "#ac93e6";
57
+ export const PURPLE_400 = "#9475db";
58
+ export const PURPLE_500 = "#7b58cf";
59
+ export const PURPLE_600 = "#694cc0";
60
+ export const PURPLE_700 = "#5943b6";
61
+ export const PURPLE_800 = "#453894";
62
+ export const PURPLE_900 = "#2f2a6b";
63
+ export const PURPLE_950 = "#232150";
64
+ export const RED_50 = "#fcf1ef";
65
+ export const RED_100 = "#fdd4cd";
66
+ export const RED_200 = "#fcb5aa";
67
+ export const RED_300 = "#f57f6c";
68
+ export const RED_400 = "#ec5941";
69
+ export const RED_500 = "#dd2b0e";
70
+ export const RED_600 = "#c91c00";
71
+ export const RED_700 = "#ae1800";
72
+ export const RED_800 = "#8d1300";
73
+ export const RED_900 = "#660e00";
74
+ export const RED_950 = "#4d0a00";
75
+ export const DATA_VIZ_GREEN_50 = "#ddfab7";
76
+ export const DATA_VIZ_GREEN_100 = "#c6ed94";
77
+ export const DATA_VIZ_GREEN_200 = "#b0d97b";
78
+ export const DATA_VIZ_GREEN_300 = "#94c25e";
79
+ export const DATA_VIZ_GREEN_400 = "#81ac41";
80
+ export const DATA_VIZ_GREEN_500 = "#619025";
81
+ export const DATA_VIZ_GREEN_600 = "#4e7f0e";
82
+ export const DATA_VIZ_GREEN_700 = "#366800";
83
+ export const DATA_VIZ_GREEN_800 = "#275600";
84
+ export const DATA_VIZ_GREEN_900 = "#1a4500";
85
+ export const DATA_VIZ_GREEN_950 = "#133a03";
86
+ export const DATA_VIZ_AQUA_50 = "#b5fefd";
87
+ export const DATA_VIZ_AQUA_100 = "#93f2ef";
88
+ export const DATA_VIZ_AQUA_200 = "#5edee3";
89
+ export const DATA_VIZ_AQUA_300 = "#32c5d2";
90
+ export const DATA_VIZ_AQUA_400 = "#00acc4";
91
+ export const DATA_VIZ_AQUA_500 = "#0090b1";
92
+ export const DATA_VIZ_AQUA_600 = "#007b9b";
93
+ export const DATA_VIZ_AQUA_700 = "#006381";
94
+ export const DATA_VIZ_AQUA_800 = "#00516c";
95
+ export const DATA_VIZ_AQUA_900 = "#004059";
96
+ export const DATA_VIZ_AQUA_950 = "#00344b";
97
+ export const DATA_VIZ_BLUE_50 = "#e9ebff";
98
+ export const DATA_VIZ_BLUE_100 = "#d2dcff";
99
+ export const DATA_VIZ_BLUE_200 = "#b7c6ff";
100
+ export const DATA_VIZ_BLUE_300 = "#97acff";
101
+ export const DATA_VIZ_BLUE_400 = "#7992f5";
102
+ export const DATA_VIZ_BLUE_500 = "#617ae2";
103
+ export const DATA_VIZ_BLUE_600 = "#4e65cd";
104
+ export const DATA_VIZ_BLUE_700 = "#3f51ae";
105
+ export const DATA_VIZ_BLUE_800 = "#374291";
106
+ export const DATA_VIZ_BLUE_900 = "#303470";
107
+ export const DATA_VIZ_BLUE_950 = "#2a2b59";
108
+ export const DATA_VIZ_MAGENTA_50 = "#ffe3eb";
109
+ export const DATA_VIZ_MAGENTA_100 = "#ffccdb";
110
+ export const DATA_VIZ_MAGENTA_200 = "#fcacc5";
111
+ export const DATA_VIZ_MAGENTA_300 = "#f88aaf";
112
+ export const DATA_VIZ_MAGENTA_400 = "#e86e9a";
113
+ export const DATA_VIZ_MAGENTA_500 = "#cf4d81";
114
+ export const DATA_VIZ_MAGENTA_600 = "#b93d71";
115
+ export const DATA_VIZ_MAGENTA_700 = "#9a2e5d";
116
+ export const DATA_VIZ_MAGENTA_800 = "#7c214f";
117
+ export const DATA_VIZ_MAGENTA_900 = "#661e3a";
118
+ export const DATA_VIZ_MAGENTA_950 = "#541d31";
119
+ export const DATA_VIZ_ORANGE_50 = "#fae8d1";
120
+ export const DATA_VIZ_ORANGE_100 = "#f5d6b3";
121
+ export const DATA_VIZ_ORANGE_200 = "#eebd8c";
122
+ export const DATA_VIZ_ORANGE_300 = "#e99b60";
123
+ export const DATA_VIZ_ORANGE_400 = "#e07e41";
124
+ export const DATA_VIZ_ORANGE_500 = "#c95d2e";
125
+ export const DATA_VIZ_ORANGE_600 = "#b14f18";
126
+ export const DATA_VIZ_ORANGE_700 = "#92430a";
127
+ export const DATA_VIZ_ORANGE_800 = "#6f3500";
128
+ export const DATA_VIZ_ORANGE_900 = "#5e2f05";
129
+ export const DATA_VIZ_ORANGE_950 = "#4b2707";
130
+ export const BRAND_CHARCOAL = "#171321";
131
+ export const BRAND_ORANGE_01 = "#fca326";
132
+ export const BRAND_ORANGE_02 = "#fc6d26";
133
+ export const BRAND_ORANGE_03 = "#e24329";
134
+ export const BRAND_PURPLE_01 = "#a989f5";
135
+ export const BRAND_PURPLE_02 = "#7759c2";
136
+ export const BRAND_GRAY_01 = "#d1d0d3";
137
+ export const BRAND_GRAY_02 = "#a2a1a6";
138
+ export const BRAND_GRAY_03 = "#74717a";
139
+ export const BRAND_GRAY_04 = "#45424d";
140
+ export const BRAND_GRAY_05 = "#2b2838";