@elastic/eui-theme-borealis 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +6 -0
- package/README.md +19 -0
- package/lib/.tsbuildinfo +1 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.js +32 -0
- package/lib/index.js.map +1 -0
- package/lib/variables/_animation.d.ts +4 -0
- package/lib/variables/_animation.js +23 -0
- package/lib/variables/_animation.js.map +1 -0
- package/lib/variables/_borders.d.ts +2 -0
- package/lib/variables/_borders.js +23 -0
- package/lib/variables/_borders.js.map +1 -0
- package/lib/variables/_breakpoint.d.ts +2 -0
- package/lib/variables/_breakpoint.js +15 -0
- package/lib/variables/_breakpoint.js.map +1 -0
- package/lib/variables/_buttons.d.ts +2 -0
- package/lib/variables/_buttons.js +98 -0
- package/lib/variables/_buttons.js.map +1 -0
- package/lib/variables/_colors.d.ts +2 -0
- package/lib/variables/_colors.js +16 -0
- package/lib/variables/_colors.js.map +1 -0
- package/lib/variables/_colors_dark.d.ts +7 -0
- package/lib/variables/_colors_dark.js +58 -0
- package/lib/variables/_colors_dark.js.map +1 -0
- package/lib/variables/_colors_light.d.ts +7 -0
- package/lib/variables/_colors_light.js +59 -0
- package/lib/variables/_colors_light.js.map +1 -0
- package/lib/variables/_components.d.ts +2 -0
- package/lib/variables/_components.js +125 -0
- package/lib/variables/_components.js.map +1 -0
- package/lib/variables/_forms.d.ts +38 -0
- package/lib/variables/_forms.js +51 -0
- package/lib/variables/_forms.js.map +1 -0
- package/lib/variables/_levels.d.ts +2 -0
- package/lib/variables/_levels.js +19 -0
- package/lib/variables/_levels.js.map +1 -0
- package/lib/variables/_size.d.ts +3 -0
- package/lib/variables/_size.js +22 -0
- package/lib/variables/_size.js.map +1 -0
- package/lib/variables/_states.d.ts +2 -0
- package/lib/variables/_states.js +17 -0
- package/lib/variables/_states.js.map +1 -0
- package/lib/variables/_typography.d.ts +5 -0
- package/lib/variables/_typography.js +50 -0
- package/lib/variables/_typography.js.map +1 -0
- package/lib/variables/colors/_colors_dark.d.ts +15 -0
- package/lib/variables/colors/_colors_dark.js +144 -0
- package/lib/variables/colors/_colors_dark.js.map +1 -0
- package/lib/variables/colors/_colors_light.d.ts +15 -0
- package/lib/variables/colors/_colors_light.js +144 -0
- package/lib/variables/colors/_colors_light.js.map +1 -0
- package/lib/variables/colors/_primitive_colors.d.ts +205 -0
- package/lib/variables/colors/_primitive_colors.js +213 -0
- package/lib/variables/colors/_primitive_colors.js.map +1 -0
- package/lib/variables/colors/_semantic_colors.d.ts +144 -0
- package/lib/variables/colors/_semantic_colors.js +153 -0
- package/lib/variables/colors/_semantic_colors.js.map +1 -0
- package/lib/variables/colors/index.d.ts +2 -0
- package/lib/variables/colors/index.js +17 -0
- package/lib/variables/colors/index.js.map +1 -0
- package/licenses/ELASTIC-LICENSE-2.0.md +93 -0
- package/licenses/SSPL-LICENSE.md +557 -0
- package/package.json +60 -0
- package/src/theme_dark.scss +8 -0
- package/src/theme_light.scss +7 -0
- package/src/variables/_borders.scss +3 -0
- package/src/variables/_buttons.scss +18 -0
- package/src/variables/_font_weight.scss +10 -0
- package/src/variables/_form.scss +12 -0
- package/src/variables/_index.scss +9 -0
- package/src/variables/_page.scss +1 -0
- package/src/variables/_states.scss +11 -0
- package/src/variables/_typography.scss +64 -0
- package/src/variables/colors/_colors_dark.scss +121 -0
- package/src/variables/colors/_colors_light.scss +123 -0
- package/src/variables/colors/_semantic_colors.scss +211 -0
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
3
|
+
* or more contributor license agreements. Licensed under the Elastic License
|
|
4
|
+
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
5
|
+
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
6
|
+
* Side Public License, v 1.
|
|
7
|
+
*/
|
|
8
|
+
import { PRIMITIVE_COLORS } from './_primitive_colors';
|
|
9
|
+
import { SEMANTIC_COLORS } from './_semantic_colors';
|
|
10
|
+
/*
|
|
11
|
+
* LIGHT THEME
|
|
12
|
+
*/
|
|
13
|
+
export const brand_colors = {
|
|
14
|
+
primary: SEMANTIC_COLORS.primary90,
|
|
15
|
+
accent: SEMANTIC_COLORS.accent90,
|
|
16
|
+
accentSecondary: SEMANTIC_COLORS.accentSecondary90,
|
|
17
|
+
success: SEMANTIC_COLORS.success90,
|
|
18
|
+
warning: SEMANTIC_COLORS.warning40,
|
|
19
|
+
danger: SEMANTIC_COLORS.danger90,
|
|
20
|
+
};
|
|
21
|
+
export const brand_text_colors = {
|
|
22
|
+
/* Legacy colors */
|
|
23
|
+
primaryText: SEMANTIC_COLORS.primary100,
|
|
24
|
+
accentText: SEMANTIC_COLORS.accent100,
|
|
25
|
+
successText: SEMANTIC_COLORS.success100,
|
|
26
|
+
warningText: SEMANTIC_COLORS.warning110,
|
|
27
|
+
dangerText: SEMANTIC_COLORS.danger100,
|
|
28
|
+
/* New colors */
|
|
29
|
+
textPrimary: SEMANTIC_COLORS.primary100,
|
|
30
|
+
textAccent: SEMANTIC_COLORS.accent100,
|
|
31
|
+
textAccentSecondary: SEMANTIC_COLORS.accentSecondary100,
|
|
32
|
+
textSuccess: SEMANTIC_COLORS.success100,
|
|
33
|
+
textWarning: SEMANTIC_COLORS.warning110,
|
|
34
|
+
textDanger: SEMANTIC_COLORS.danger100,
|
|
35
|
+
};
|
|
36
|
+
export const text_colors = {
|
|
37
|
+
/* Legacy colors */
|
|
38
|
+
text: SEMANTIC_COLORS.shade135,
|
|
39
|
+
title: SEMANTIC_COLORS.shade140,
|
|
40
|
+
subduedText: SEMANTIC_COLORS.shade90,
|
|
41
|
+
link: SEMANTIC_COLORS.primary100,
|
|
42
|
+
/* New colors */
|
|
43
|
+
textParagraph: SEMANTIC_COLORS.shade135,
|
|
44
|
+
textHeading: SEMANTIC_COLORS.shade140,
|
|
45
|
+
textSubdued: SEMANTIC_COLORS.shade90,
|
|
46
|
+
textDisabled: SEMANTIC_COLORS.shade70,
|
|
47
|
+
textInverse: SEMANTIC_COLORS.plainLight,
|
|
48
|
+
};
|
|
49
|
+
export const shade_colors = {
|
|
50
|
+
emptyShade: SEMANTIC_COLORS.plainLight,
|
|
51
|
+
lightestShade: SEMANTIC_COLORS.shade20,
|
|
52
|
+
lightShade: SEMANTIC_COLORS.shade30,
|
|
53
|
+
mediumShade: SEMANTIC_COLORS.shade60,
|
|
54
|
+
darkShade: SEMANTIC_COLORS.shade90,
|
|
55
|
+
darkestShade: SEMANTIC_COLORS.shade120,
|
|
56
|
+
fullShade: SEMANTIC_COLORS.plainDark,
|
|
57
|
+
};
|
|
58
|
+
export const background_colors = {
|
|
59
|
+
backgroundBasePrimary: SEMANTIC_COLORS.primary10,
|
|
60
|
+
backgroundBaseAccent: SEMANTIC_COLORS.accent10,
|
|
61
|
+
backgroundBaseAccentSecondary: SEMANTIC_COLORS.accentSecondary10,
|
|
62
|
+
backgroundBaseSuccess: SEMANTIC_COLORS.success10,
|
|
63
|
+
backgroundBaseWarning: SEMANTIC_COLORS.warning10,
|
|
64
|
+
backgroundBaseDanger: SEMANTIC_COLORS.danger10,
|
|
65
|
+
backgroundBaseSubdued: SEMANTIC_COLORS.shade10,
|
|
66
|
+
backgroundBasePlain: SEMANTIC_COLORS.plainLight,
|
|
67
|
+
backgroundBaseDisabled: SEMANTIC_COLORS.shade15,
|
|
68
|
+
backgroundBaseFormsPrepend: SEMANTIC_COLORS.shade15,
|
|
69
|
+
backgroundBaseFormsControlDisabled: SEMANTIC_COLORS.shade30,
|
|
70
|
+
backgroundBaseInteractiveHover: SEMANTIC_COLORS.shadeTransparent10,
|
|
71
|
+
backgroundBaseInteractiveSelect: SEMANTIC_COLORS.shade15,
|
|
72
|
+
backgroundBaseInteractiveOverlay: SEMANTIC_COLORS.shadeTransparent80,
|
|
73
|
+
backgroundBaseSkeletonEdge: SEMANTIC_COLORS.shadeTransparent30,
|
|
74
|
+
backgroundBaseSkeletonMiddle: SEMANTIC_COLORS.shadeTransparent10,
|
|
75
|
+
backgroundLightPrimary: SEMANTIC_COLORS.primary20,
|
|
76
|
+
backgroundLightAccent: SEMANTIC_COLORS.accent20,
|
|
77
|
+
backgroundLightAccentSecondary: SEMANTIC_COLORS.accentSecondary20,
|
|
78
|
+
backgroundLightSuccess: SEMANTIC_COLORS.success20,
|
|
79
|
+
backgroundLightWarning: SEMANTIC_COLORS.warning20,
|
|
80
|
+
backgroundLightDanger: SEMANTIC_COLORS.danger20,
|
|
81
|
+
backgroundLightText: SEMANTIC_COLORS.shade20,
|
|
82
|
+
backgroundFilledPrimary: SEMANTIC_COLORS.primary90,
|
|
83
|
+
backgroundFilledAccent: SEMANTIC_COLORS.accent90,
|
|
84
|
+
backgroundFilledAccentSecondary: SEMANTIC_COLORS.accentSecondary90,
|
|
85
|
+
backgroundFilledSuccess: SEMANTIC_COLORS.success90,
|
|
86
|
+
backgroundFilledWarning: SEMANTIC_COLORS.warning40,
|
|
87
|
+
backgroundFilledDanger: SEMANTIC_COLORS.danger90,
|
|
88
|
+
backgroundFilledText: SEMANTIC_COLORS.shade90,
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* NOTE: temp values for migration - these should not be used,
|
|
92
|
+
* use backgroundBase tokens instead
|
|
93
|
+
* TODO: remove once obsolete
|
|
94
|
+
*/
|
|
95
|
+
export const transparent_background_colors = {
|
|
96
|
+
backgroundTransparent: PRIMITIVE_COLORS.transparent.white0,
|
|
97
|
+
backgroundTransparentPrimary: background_colors.backgroundBasePrimary,
|
|
98
|
+
backgroundTransparentAccent: background_colors.backgroundBaseAccent,
|
|
99
|
+
backgroundTransparentAccentSecondary: background_colors.backgroundBaseAccentSecondary,
|
|
100
|
+
backgroundTransparentSuccess: background_colors.backgroundBaseSuccess,
|
|
101
|
+
backgroundTransparentWarning: background_colors.backgroundBaseWarning,
|
|
102
|
+
backgroundTransparentDanger: background_colors.backgroundBaseDanger,
|
|
103
|
+
backgroundTransparentSubdued: SEMANTIC_COLORS.shade15,
|
|
104
|
+
backgroundTransparentPlain: SEMANTIC_COLORS.shade15,
|
|
105
|
+
};
|
|
106
|
+
export const border_colors = {
|
|
107
|
+
borderBasePrimary: SEMANTIC_COLORS.primary30,
|
|
108
|
+
borderBaseAccent: SEMANTIC_COLORS.accent30,
|
|
109
|
+
borderBaseAccentSecondary: SEMANTIC_COLORS.accentSecondary30,
|
|
110
|
+
borderBaseSuccess: SEMANTIC_COLORS.success30,
|
|
111
|
+
borderBaseWarning: SEMANTIC_COLORS.warning30,
|
|
112
|
+
borderBaseDanger: SEMANTIC_COLORS.danger30,
|
|
113
|
+
borderBasePlain: SEMANTIC_COLORS.shade30,
|
|
114
|
+
borderBaseSubdued: SEMANTIC_COLORS.shade20,
|
|
115
|
+
borderBaseDisabled: SEMANTIC_COLORS.shade30,
|
|
116
|
+
borderBaseFloating: PRIMITIVE_COLORS.transparent.white0,
|
|
117
|
+
borderBaseFormsColorSwatch: SEMANTIC_COLORS.shadeTransparent30,
|
|
118
|
+
borderBaseFormsControl: SEMANTIC_COLORS.shade60,
|
|
119
|
+
borderStrongPrimary: SEMANTIC_COLORS.primary100,
|
|
120
|
+
borderStrongAccent: SEMANTIC_COLORS.accent100,
|
|
121
|
+
borderStrongAccentSecondary: SEMANTIC_COLORS.accentSecondary100,
|
|
122
|
+
borderStrongSuccess: SEMANTIC_COLORS.success100,
|
|
123
|
+
borderStrongWarning: SEMANTIC_COLORS.warning100,
|
|
124
|
+
borderStrongDanger: SEMANTIC_COLORS.danger100,
|
|
125
|
+
};
|
|
126
|
+
export const special_colors = {
|
|
127
|
+
body: SEMANTIC_COLORS.shade10,
|
|
128
|
+
highlight: SEMANTIC_COLORS.primary10,
|
|
129
|
+
disabled: SEMANTIC_COLORS.shade20,
|
|
130
|
+
disabledText: SEMANTIC_COLORS.shade80,
|
|
131
|
+
shadow: PRIMITIVE_COLORS.black,
|
|
132
|
+
};
|
|
133
|
+
export const light_colors = {
|
|
134
|
+
...SEMANTIC_COLORS,
|
|
135
|
+
...brand_colors,
|
|
136
|
+
...shade_colors,
|
|
137
|
+
...special_colors,
|
|
138
|
+
...brand_text_colors,
|
|
139
|
+
...text_colors,
|
|
140
|
+
...background_colors,
|
|
141
|
+
...transparent_background_colors,
|
|
142
|
+
...border_colors,
|
|
143
|
+
};
|
|
144
|
+
//# sourceMappingURL=_colors_light.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_colors_light.js","sourceRoot":"","sources":["../../../src/variables/colors/_colors_light.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
export declare const PRIMITIVE_COLORS: {
|
|
2
|
+
white: string;
|
|
3
|
+
black: string;
|
|
4
|
+
mutedBlack: string;
|
|
5
|
+
blueBlack: string;
|
|
6
|
+
transparent: {
|
|
7
|
+
white0: string;
|
|
8
|
+
white10: string;
|
|
9
|
+
white20: string;
|
|
10
|
+
white30: string;
|
|
11
|
+
white40: string;
|
|
12
|
+
white50: string;
|
|
13
|
+
white60: string;
|
|
14
|
+
white70: string;
|
|
15
|
+
white80: string;
|
|
16
|
+
white90: string;
|
|
17
|
+
white100: string;
|
|
18
|
+
white110: string;
|
|
19
|
+
white120: string;
|
|
20
|
+
white130: string;
|
|
21
|
+
white140: string;
|
|
22
|
+
mutedGrey10: string;
|
|
23
|
+
mutedGrey20: string;
|
|
24
|
+
mutedGrey30: string;
|
|
25
|
+
mutedGrey40: string;
|
|
26
|
+
mutedGrey50: string;
|
|
27
|
+
mutedGrey60: string;
|
|
28
|
+
mutedGrey70: string;
|
|
29
|
+
mutedGrey80: string;
|
|
30
|
+
mutedGrey90: string;
|
|
31
|
+
mutedGrey100: string;
|
|
32
|
+
mutedGrey110: string;
|
|
33
|
+
mutedGrey120: string;
|
|
34
|
+
mutedGrey130: string;
|
|
35
|
+
mutedGrey140: string;
|
|
36
|
+
blueGrey10: string;
|
|
37
|
+
blueGrey20: string;
|
|
38
|
+
blueGrey30: string;
|
|
39
|
+
blueGrey40: string;
|
|
40
|
+
blueGrey50: string;
|
|
41
|
+
blueGrey60: string;
|
|
42
|
+
blueGrey70: string;
|
|
43
|
+
blueGrey80: string;
|
|
44
|
+
blueGrey90: string;
|
|
45
|
+
blueGrey100: string;
|
|
46
|
+
blueGrey110: string;
|
|
47
|
+
blueGrey120: string;
|
|
48
|
+
blueGrey130: string;
|
|
49
|
+
blueGrey140: string;
|
|
50
|
+
};
|
|
51
|
+
mutedGrey10: string;
|
|
52
|
+
mutedGrey15: string;
|
|
53
|
+
mutedGrey20: string;
|
|
54
|
+
mutedGrey25: string;
|
|
55
|
+
mutedGrey30: string;
|
|
56
|
+
mutedGrey35: string;
|
|
57
|
+
mutedGrey40: string;
|
|
58
|
+
mutedGrey45: string;
|
|
59
|
+
mutedGrey50: string;
|
|
60
|
+
mutedGrey55: string;
|
|
61
|
+
mutedGrey60: string;
|
|
62
|
+
mutedGrey65: string;
|
|
63
|
+
mutedGrey70: string;
|
|
64
|
+
mutedGrey75: string;
|
|
65
|
+
mutedGrey80: string;
|
|
66
|
+
mutedGrey85: string;
|
|
67
|
+
mutedGrey90: string;
|
|
68
|
+
mutedGrey95: string;
|
|
69
|
+
mutedGrey100: string;
|
|
70
|
+
mutedGrey105: string;
|
|
71
|
+
mutedGrey110: string;
|
|
72
|
+
mutedGrey115: string;
|
|
73
|
+
mutedGrey120: string;
|
|
74
|
+
mutedGrey125: string;
|
|
75
|
+
mutedGrey130: string;
|
|
76
|
+
mutedGrey135: string;
|
|
77
|
+
mutedGrey140: string;
|
|
78
|
+
mutedGrey145: string;
|
|
79
|
+
blueGrey10: string;
|
|
80
|
+
blueGrey15: string;
|
|
81
|
+
blueGrey20: string;
|
|
82
|
+
blueGrey25: string;
|
|
83
|
+
blueGrey30: string;
|
|
84
|
+
blueGrey35: string;
|
|
85
|
+
blueGrey40: string;
|
|
86
|
+
blueGrey45: string;
|
|
87
|
+
blueGrey50: string;
|
|
88
|
+
blueGrey55: string;
|
|
89
|
+
blueGrey60: string;
|
|
90
|
+
blueGrey65: string;
|
|
91
|
+
blueGrey70: string;
|
|
92
|
+
blueGrey75: string;
|
|
93
|
+
blueGrey80: string;
|
|
94
|
+
blueGrey85: string;
|
|
95
|
+
blueGrey90: string;
|
|
96
|
+
blueGrey95: string;
|
|
97
|
+
blueGrey100: string;
|
|
98
|
+
blueGrey105: string;
|
|
99
|
+
blueGrey110: string;
|
|
100
|
+
blueGrey115: string;
|
|
101
|
+
blueGrey120: string;
|
|
102
|
+
blueGrey125: string;
|
|
103
|
+
blueGrey130: string;
|
|
104
|
+
blueGrey135: string;
|
|
105
|
+
blueGrey140: string;
|
|
106
|
+
blueGrey145: string;
|
|
107
|
+
blue10: string;
|
|
108
|
+
blue20: string;
|
|
109
|
+
blue30: string;
|
|
110
|
+
blue40: string;
|
|
111
|
+
blue50: string;
|
|
112
|
+
blue60: string;
|
|
113
|
+
blue70: string;
|
|
114
|
+
blue80: string;
|
|
115
|
+
blue90: string;
|
|
116
|
+
blue100: string;
|
|
117
|
+
blue110: string;
|
|
118
|
+
blue120: string;
|
|
119
|
+
blue130: string;
|
|
120
|
+
blue140: string;
|
|
121
|
+
teal10: string;
|
|
122
|
+
teal20: string;
|
|
123
|
+
teal30: string;
|
|
124
|
+
teal40: string;
|
|
125
|
+
teal50: string;
|
|
126
|
+
teal60: string;
|
|
127
|
+
teal70: string;
|
|
128
|
+
teal80: string;
|
|
129
|
+
teal90: string;
|
|
130
|
+
teal100: string;
|
|
131
|
+
teal110: string;
|
|
132
|
+
teal120: string;
|
|
133
|
+
teal130: string;
|
|
134
|
+
teal140: string;
|
|
135
|
+
pink10: string;
|
|
136
|
+
pink20: string;
|
|
137
|
+
pink30: string;
|
|
138
|
+
pink40: string;
|
|
139
|
+
pink50: string;
|
|
140
|
+
pink60: string;
|
|
141
|
+
pink70: string;
|
|
142
|
+
pink80: string;
|
|
143
|
+
pink90: string;
|
|
144
|
+
pink100: string;
|
|
145
|
+
pink110: string;
|
|
146
|
+
pink120: string;
|
|
147
|
+
pink130: string;
|
|
148
|
+
pink140: string;
|
|
149
|
+
green10: string;
|
|
150
|
+
green20: string;
|
|
151
|
+
green30: string;
|
|
152
|
+
green40: string;
|
|
153
|
+
green50: string;
|
|
154
|
+
green60: string;
|
|
155
|
+
green70: string;
|
|
156
|
+
green80: string;
|
|
157
|
+
green90: string;
|
|
158
|
+
green100: string;
|
|
159
|
+
green110: string;
|
|
160
|
+
green120: string;
|
|
161
|
+
green130: string;
|
|
162
|
+
green140: string;
|
|
163
|
+
yellow10: string;
|
|
164
|
+
yellow20: string;
|
|
165
|
+
yellow30: string;
|
|
166
|
+
yellow40: string;
|
|
167
|
+
yellow50: string;
|
|
168
|
+
yellow60: string;
|
|
169
|
+
yellow70: string;
|
|
170
|
+
yellow80: string;
|
|
171
|
+
yellow90: string;
|
|
172
|
+
yellow100: string;
|
|
173
|
+
yellow110: string;
|
|
174
|
+
yellow120: string;
|
|
175
|
+
yellow130: string;
|
|
176
|
+
yellow140: string;
|
|
177
|
+
red10: string;
|
|
178
|
+
red20: string;
|
|
179
|
+
red30: string;
|
|
180
|
+
red40: string;
|
|
181
|
+
red50: string;
|
|
182
|
+
red60: string;
|
|
183
|
+
red70: string;
|
|
184
|
+
red80: string;
|
|
185
|
+
red90: string;
|
|
186
|
+
red100: string;
|
|
187
|
+
red110: string;
|
|
188
|
+
red120: string;
|
|
189
|
+
red130: string;
|
|
190
|
+
red140: string;
|
|
191
|
+
purple10: string;
|
|
192
|
+
purple20: string;
|
|
193
|
+
purple30: string;
|
|
194
|
+
purple40: string;
|
|
195
|
+
purple50: string;
|
|
196
|
+
purple60: string;
|
|
197
|
+
purple70: string;
|
|
198
|
+
purple80: string;
|
|
199
|
+
purple90: string;
|
|
200
|
+
purple100: string;
|
|
201
|
+
purple110: string;
|
|
202
|
+
purple120: string;
|
|
203
|
+
purple130: string;
|
|
204
|
+
purple140: string;
|
|
205
|
+
};
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
3
|
+
* or more contributor license agreements. Licensed under the Elastic License
|
|
4
|
+
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
5
|
+
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
6
|
+
* Side Public License, v 1.
|
|
7
|
+
*/
|
|
8
|
+
export const PRIMITIVE_COLORS = {
|
|
9
|
+
white: '#FFFFFF',
|
|
10
|
+
black: '#000000',
|
|
11
|
+
mutedBlack: '#0E0F12',
|
|
12
|
+
blueBlack: '#07101F',
|
|
13
|
+
transparent: {
|
|
14
|
+
white0: 'transparent',
|
|
15
|
+
white10: 'rgba(255, 255, 255, 0.06)',
|
|
16
|
+
white20: 'rgba(255, 255, 255, 0.10)',
|
|
17
|
+
white30: 'rgba(255, 255, 255, 0.16)',
|
|
18
|
+
white40: 'rgba(255, 255, 255, 0.22)',
|
|
19
|
+
white50: 'rgba(255, 255, 255, 0.28)',
|
|
20
|
+
white60: 'rgba(255, 255, 255, 0.34)',
|
|
21
|
+
white70: 'rgba(255, 255, 255, 0.42)',
|
|
22
|
+
white80: 'rgba(255, 255, 255, 0.50)',
|
|
23
|
+
white90: 'rgba(255, 255, 255, 0.58)',
|
|
24
|
+
white100: 'rgba(255, 255, 255, 0.66)',
|
|
25
|
+
white110: 'rgba(255, 255, 255, 0.74)',
|
|
26
|
+
white120: 'rgba(255, 255, 255, 0.8)',
|
|
27
|
+
white130: 'rgba(255, 255, 255, 0.84)',
|
|
28
|
+
white140: 'rgba(255, 255, 255, 0.88)',
|
|
29
|
+
mutedGrey10: 'rgba(54, 95, 178, 0.06)',
|
|
30
|
+
mutedGrey20: 'rgba(50, 88, 163, 0.10)',
|
|
31
|
+
mutedGrey30: 'rgba(44, 75, 138, 0.15)',
|
|
32
|
+
mutedGrey40: 'rgba(37, 60, 111, 0.19)',
|
|
33
|
+
mutedGrey50: 'rgba(31, 48, 84, 0.24)',
|
|
34
|
+
mutedGrey60: 'rgba(24, 35, 58, 0.32)',
|
|
35
|
+
mutedGrey70: 'rgba(18, 22, 32, 0.40)',
|
|
36
|
+
mutedGrey80: 'rgba(14, 15, 18, 0.50)',
|
|
37
|
+
mutedGrey90: 'rgba(14, 15, 18, 0.60)',
|
|
38
|
+
mutedGrey100: 'rgba(14, 15, 18, 0.68)',
|
|
39
|
+
mutedGrey110: 'rgba(14, 15, 18, 0.76)',
|
|
40
|
+
mutedGrey120: 'rgba(14, 15, 18, 0.84)',
|
|
41
|
+
mutedGrey130: 'rgba(14, 15, 18, 0.88)',
|
|
42
|
+
mutedGrey140: 'rgba(14, 15, 18, 0.92)',
|
|
43
|
+
blueGrey10: 'rgba(54, 95, 178, 0.06)',
|
|
44
|
+
blueGrey20: 'rgba(54, 95, 178, 0.10)',
|
|
45
|
+
blueGrey30: 'rgba(54, 95, 178, 0.16)',
|
|
46
|
+
blueGrey40: 'rgba(54, 95, 178, 0.22)',
|
|
47
|
+
blueGrey50: 'rgba(47, 84, 158, 0.28)',
|
|
48
|
+
blueGrey60: 'rgba(35, 65, 123, 0.36)',
|
|
49
|
+
blueGrey70: 'rgba(24, 45, 88, 0.44)',
|
|
50
|
+
blueGrey80: 'rgba(11, 25, 51, 0.52)',
|
|
51
|
+
blueGrey90: 'rgba(5, 15, 33, 0.60)',
|
|
52
|
+
blueGrey100: 'rgba(5, 15, 33, 0.68)',
|
|
53
|
+
blueGrey110: 'rgba(5, 15, 33, 0.76)',
|
|
54
|
+
blueGrey120: 'rgba(5, 15, 33, 0.84)',
|
|
55
|
+
blueGrey130: 'rgba(5, 15, 33, 0.88)',
|
|
56
|
+
blueGrey140: 'rgba(5, 15, 33, 0.92)',
|
|
57
|
+
},
|
|
58
|
+
mutedGrey10: '#F6F9FC',
|
|
59
|
+
mutedGrey15: '#EDEFF3',
|
|
60
|
+
mutedGrey20: '#E3E6EB',
|
|
61
|
+
mutedGrey25: '#D9DDE3',
|
|
62
|
+
mutedGrey30: '#D0D4DA',
|
|
63
|
+
mutedGrey35: '#C6CBD2',
|
|
64
|
+
mutedGrey40: '#BDC2CA',
|
|
65
|
+
mutedGrey45: '#B3B9C2',
|
|
66
|
+
mutedGrey50: '#AAB0BA',
|
|
67
|
+
mutedGrey55: '#A1A8B2',
|
|
68
|
+
mutedGrey60: '#989FAA',
|
|
69
|
+
mutedGrey65: '#8F96A2',
|
|
70
|
+
mutedGrey70: '#868E9A',
|
|
71
|
+
mutedGrey75: '#7E8691',
|
|
72
|
+
mutedGrey80: '#767D89',
|
|
73
|
+
mutedGrey85: '#6E7581',
|
|
74
|
+
mutedGrey90: '#666D78',
|
|
75
|
+
mutedGrey95: '#5D6570',
|
|
76
|
+
mutedGrey100: '#555C67',
|
|
77
|
+
mutedGrey105: '#4D545E',
|
|
78
|
+
mutedGrey110: '#464C56',
|
|
79
|
+
mutedGrey115: '#3F444D',
|
|
80
|
+
mutedGrey120: '#373D45',
|
|
81
|
+
mutedGrey125: '#30353C',
|
|
82
|
+
mutedGrey130: '#292E34',
|
|
83
|
+
mutedGrey135: '#23262C',
|
|
84
|
+
mutedGrey140: '#1C1F24',
|
|
85
|
+
mutedGrey145: '#16181D',
|
|
86
|
+
blueGrey10: '#F6F9FC',
|
|
87
|
+
blueGrey15: '#ECF1F9',
|
|
88
|
+
blueGrey20: '#E3E8F2',
|
|
89
|
+
blueGrey25: '#D6DDEA',
|
|
90
|
+
blueGrey30: '#CAD3E2',
|
|
91
|
+
blueGrey35: '#C0CCDD',
|
|
92
|
+
blueGrey40: '#B4C1D5',
|
|
93
|
+
blueGrey45: '#ABB9D0',
|
|
94
|
+
blueGrey50: '#A2B1C9',
|
|
95
|
+
blueGrey55: '#98A8C3',
|
|
96
|
+
blueGrey60: '#8E9FBC',
|
|
97
|
+
blueGrey65: '#8497B7',
|
|
98
|
+
blueGrey70: '#798EAF',
|
|
99
|
+
blueGrey75: '#7186A8',
|
|
100
|
+
blueGrey80: '#6A7FA0',
|
|
101
|
+
blueGrey85: '#627593',
|
|
102
|
+
blueGrey90: '#5A6D8C',
|
|
103
|
+
blueGrey95: '#516381',
|
|
104
|
+
blueGrey100: '#485975',
|
|
105
|
+
blueGrey105: '#3F4F69',
|
|
106
|
+
blueGrey110: '#384861',
|
|
107
|
+
blueGrey115: '#324058',
|
|
108
|
+
blueGrey120: '#2B394F',
|
|
109
|
+
blueGrey125: '#243147',
|
|
110
|
+
blueGrey130: '#1D2A3E',
|
|
111
|
+
blueGrey135: '#172336',
|
|
112
|
+
blueGrey140: '#111C2C',
|
|
113
|
+
blueGrey145: '#0B1628',
|
|
114
|
+
blue10: '#E5F3FF',
|
|
115
|
+
blue20: '#D6E9FF',
|
|
116
|
+
blue30: '#B4D5FF',
|
|
117
|
+
blue40: '#96C3FF',
|
|
118
|
+
blue50: '#78B0FF',
|
|
119
|
+
blue60: '#599DFF',
|
|
120
|
+
blue70: '#3788FF',
|
|
121
|
+
blue80: '#2476F0',
|
|
122
|
+
blue90: '#0B64DD',
|
|
123
|
+
blue100: '#1750BA',
|
|
124
|
+
blue110: '#154399',
|
|
125
|
+
blue120: '#123778',
|
|
126
|
+
blue130: '#0D2F5E',
|
|
127
|
+
blue140: '#0A2342',
|
|
128
|
+
teal10: '#E2F9F7',
|
|
129
|
+
teal20: '#C9F3F0',
|
|
130
|
+
teal30: '#98E6E2',
|
|
131
|
+
teal40: '#5DD8D2',
|
|
132
|
+
teal50: '#2ECCC7',
|
|
133
|
+
teal60: '#00BEB8',
|
|
134
|
+
teal70: '#00B0AA',
|
|
135
|
+
teal80: '#009E99',
|
|
136
|
+
teal90: '#008B87',
|
|
137
|
+
teal100: '#047471',
|
|
138
|
+
teal110: '#065B58',
|
|
139
|
+
teal120: '#044949',
|
|
140
|
+
teal130: '#023436',
|
|
141
|
+
teal140: '#03282B',
|
|
142
|
+
pink10: '#FFEBF5',
|
|
143
|
+
pink20: '#FDDDE9',
|
|
144
|
+
pink30: '#FFBED5',
|
|
145
|
+
pink40: '#FBA3C4',
|
|
146
|
+
pink50: '#F588B3',
|
|
147
|
+
pink60: '#ED6BA2',
|
|
148
|
+
pink70: '#E54A91',
|
|
149
|
+
pink80: '#D13680',
|
|
150
|
+
pink90: '#BC1E70',
|
|
151
|
+
pink100: '#A11262',
|
|
152
|
+
pink110: '#831652',
|
|
153
|
+
pink120: '#5E2140',
|
|
154
|
+
pink130: '#481E32',
|
|
155
|
+
pink140: '#351725',
|
|
156
|
+
green10: '#E2F8F0',
|
|
157
|
+
green20: '#C9F3E3',
|
|
158
|
+
green30: '#9DEDCE',
|
|
159
|
+
green40: '#6EDEB7',
|
|
160
|
+
green50: '#3ACFA0',
|
|
161
|
+
green60: '#23BE8F',
|
|
162
|
+
green70: '#04AE7E',
|
|
163
|
+
green80: '#00996B',
|
|
164
|
+
green90: '#008A5E',
|
|
165
|
+
green100: '#09724D',
|
|
166
|
+
green110: '#0C5A3F',
|
|
167
|
+
green120: '#094837',
|
|
168
|
+
green130: '#0D362B',
|
|
169
|
+
green140: '#092A26',
|
|
170
|
+
yellow10: '#FDF3D8',
|
|
171
|
+
yellow20: '#FDE9B5',
|
|
172
|
+
yellow30: '#FCD279',
|
|
173
|
+
yellow40: '#FACB3D',
|
|
174
|
+
yellow50: '#F5BC00',
|
|
175
|
+
yellow60: '#E6AB01',
|
|
176
|
+
yellow70: '#CA9601',
|
|
177
|
+
yellow80: '#AD7E00',
|
|
178
|
+
yellow90: '#966B03',
|
|
179
|
+
yellow100: '#825803',
|
|
180
|
+
yellow110: '#6A4906',
|
|
181
|
+
yellow120: '#513910',
|
|
182
|
+
yellow130: '#3D3014',
|
|
183
|
+
yellow140: '#2C2721',
|
|
184
|
+
red10: '#FFE8E5',
|
|
185
|
+
red20: '#FDDDD8',
|
|
186
|
+
red30: '#FFC0B8',
|
|
187
|
+
red40: '#FFA59C',
|
|
188
|
+
red50: '#FC8A80',
|
|
189
|
+
red60: '#F66D64',
|
|
190
|
+
red70: '#EE4C48',
|
|
191
|
+
red80: '#DA3737',
|
|
192
|
+
red90: '#C61E25',
|
|
193
|
+
red100: '#A71627',
|
|
194
|
+
red110: '#7F1F27',
|
|
195
|
+
red120: '#5E2129',
|
|
196
|
+
red130: '#491D27',
|
|
197
|
+
red140: '#351721',
|
|
198
|
+
purple10: '#F3ECFE',
|
|
199
|
+
purple20: '#ECE2FE',
|
|
200
|
+
purple30: '#DECDFE',
|
|
201
|
+
purple40: '#CEB6FC',
|
|
202
|
+
purple50: '#BF9CF9',
|
|
203
|
+
purple60: '#B084F5',
|
|
204
|
+
purple70: '#A36DEF',
|
|
205
|
+
purple80: '#925CDA',
|
|
206
|
+
purple90: '#8144CC',
|
|
207
|
+
purple100: '#6B3C9F',
|
|
208
|
+
purple110: '#52357E',
|
|
209
|
+
purple120: '#3E2C63',
|
|
210
|
+
purple130: '#322452',
|
|
211
|
+
purple140: '#2A1E3E',
|
|
212
|
+
};
|
|
213
|
+
//# sourceMappingURL=_primitive_colors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_primitive_colors.js","sourceRoot":"","sources":["../../../src/variables/colors/_primitive_colors.ts"],"names":[],"mappings":"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"}
|