@spaced-out/ui-design-system 0.0.1-alpha.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.
- package/.commitlintrc.json +3 -0
- package/.cspell/custom-words.txt +22 -0
- package/.editorconfig +9 -0
- package/.eslintignore +1 -0
- package/.eslintrc.yml +122 -0
- package/.flowconfig +45 -0
- package/.github/workflows/pages.yml +52 -0
- package/.prettierrc +11 -0
- package/.storybook/SenseTheme.js +12 -0
- package/.storybook/main.js +73 -0
- package/.storybook/manager-head.html +41 -0
- package/.storybook/manager.js +14 -0
- package/.storybook/preview-head.html +130 -0
- package/.storybook/preview.js +128 -0
- package/.storybook/public/favicon.ico +0 -0
- package/.storybook/public/favicon.svg +6 -0
- package/.storybook/public/fonts/CentraNo2-Book.woff +0 -0
- package/.storybook/public/fonts/CentraNo2-Book.woff2 +0 -0
- package/.storybook/public/fonts/CentraNo2-BookItalic.woff +0 -0
- package/.storybook/public/fonts/CentraNo2-BookItalic.woff2 +0 -0
- package/.storybook/public/fonts/CentraNo2-Medium.woff +0 -0
- package/.storybook/public/fonts/CentraNo2-Medium.woff2 +0 -0
- package/.vscode/extensions.json +3 -0
- package/CHANGELOG.md +73 -0
- package/README.md +178 -0
- package/babel.config.js +24 -0
- package/config.js +58 -0
- package/cspell.json +26 -0
- package/design-tokens/border/app-border.json +41 -0
- package/design-tokens/border/base-border.json +41 -0
- package/design-tokens/color/app-color.json +226 -0
- package/design-tokens/color/base-color.json +265 -0
- package/design-tokens/elevation/app-elevation.json +22 -0
- package/design-tokens/elevation/base-elevation.json +19 -0
- package/design-tokens/font/base-font.json +98 -0
- package/design-tokens/index.js +5 -0
- package/design-tokens/motion/app.motion.json +24 -0
- package/design-tokens/motion/base-motion.json +40 -0
- package/design-tokens/opacity/base-opacity.json +49 -0
- package/design-tokens/shadow/base-shadow.json +86 -0
- package/design-tokens/size/base-size.json +94 -0
- package/design-tokens/space/app-space.json +40 -0
- package/design-tokens/space/base-space.json +40 -0
- package/flow-typed/npm/lodash_v4.x.x.js +6407 -0
- package/git-conventional-commits.json +43 -0
- package/gulpfile.js +48 -0
- package/jest.config.js +9 -0
- package/lib/assets/fontawesome/LICENSE.txt +18 -0
- package/lib/assets/fontawesome/css/all.min.css +27184 -0
- package/lib/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/lib/assets/fontawesome/webfonts/fa-duotone-900.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-duotone-900.woff2 +0 -0
- package/lib/assets/fontawesome/webfonts/fa-light-300.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-light-300.woff2 +0 -0
- package/lib/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/lib/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/lib/assets/fontawesome/webfonts/fa-thin-100.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-thin-100.woff2 +0 -0
- package/lib/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/lib/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/lib/components/Button/Button.js +120 -0
- package/lib/components/Button/Button.js.flow +166 -0
- package/lib/components/Button/Button.module.css +226 -0
- package/lib/components/Button/index.js +24 -0
- package/lib/components/Button/index.js.flow +4 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.js +89 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.js.flow +119 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.module.css +4 -0
- package/lib/components/ButtonDropdown/index.js +12 -0
- package/lib/components/ButtonDropdown/index.js.flow +4 -0
- package/lib/components/Checkbox/Checkbox.js +99 -0
- package/lib/components/Checkbox/Checkbox.js.flow +133 -0
- package/lib/components/Checkbox/Checkbox.module.css +160 -0
- package/lib/components/Checkbox/CheckboxGroup.js +85 -0
- package/lib/components/Checkbox/CheckboxGroup.js.flow +105 -0
- package/lib/components/Checkbox/CheckboxGroup.module.css +47 -0
- package/lib/components/Checkbox/index.js +19 -0
- package/lib/components/Checkbox/index.js.flow +3 -0
- package/lib/components/CircularLoader/CircularLoader.js +44 -0
- package/lib/components/CircularLoader/CircularLoader.js.flow +44 -0
- package/lib/components/CircularLoader/CircularLoader.module.css +81 -0
- package/lib/components/CircularLoader/index.js +12 -0
- package/lib/components/CircularLoader/index.js.flow +3 -0
- package/lib/components/CodeBlock.js +26 -0
- package/lib/components/CodeBlock.js.flow +19 -0
- package/lib/components/Dialog/Dialog.js +148 -0
- package/lib/components/Dialog/Dialog.js.flow +165 -0
- package/lib/components/Dialog/Dialog.module.css +87 -0
- package/lib/components/Dialog/index.js +36 -0
- package/lib/components/Dialog/index.js.flow +14 -0
- package/lib/components/Dropdown/Dropdown.js +108 -0
- package/lib/components/Dropdown/Dropdown.js.flow +129 -0
- package/lib/components/Dropdown/Dropdown.module.css +14 -0
- package/lib/components/Dropdown/index.js +18 -0
- package/lib/components/Dropdown/index.js.flow +4 -0
- package/lib/components/Grid/Grid.js +82 -0
- package/lib/components/Grid/Grid.js.flow +88 -0
- package/lib/components/Grid/Grid.module.css +30 -0
- package/lib/components/Grid/index.js +16 -0
- package/lib/components/Grid/index.js.flow +3 -0
- package/lib/components/Icon/ClickableIcon.js +51 -0
- package/lib/components/Icon/ClickableIcon.js.flow +51 -0
- package/lib/components/Icon/ClickableIcon.module.css +50 -0
- package/lib/components/Icon/FontAwesomeLibrary.js +3 -0
- package/lib/components/Icon/FontAwesomeLibrary.js.flow +3 -0
- package/lib/components/Icon/Icon.js +38 -0
- package/lib/components/Icon/Icon.js.flow +51 -0
- package/lib/components/Icon/index.js +25 -0
- package/lib/components/Icon/index.js.flow +6 -0
- package/lib/components/InContextAlert/InContextAlert.js +121 -0
- package/lib/components/InContextAlert/InContextAlert.js.flow +173 -0
- package/lib/components/InContextAlert/InContextAlert.module.css +54 -0
- package/lib/components/InContextAlert/index.js +18 -0
- package/lib/components/InContextAlert/index.js.flow +3 -0
- package/lib/components/Input/Input.js +172 -0
- package/lib/components/Input/Input.js.flow +246 -0
- package/lib/components/Input/Input.module.css +122 -0
- package/lib/components/Input/index.js +12 -0
- package/lib/components/Input/index.js.flow +4 -0
- package/lib/components/LinearLoader/LinearLoader.js +35 -0
- package/lib/components/LinearLoader/LinearLoader.js.flow +34 -0
- package/lib/components/LinearLoader/LinearLoader.module.css +43 -0
- package/lib/components/LinearLoader/index.js +12 -0
- package/lib/components/LinearLoader/index.js.flow +3 -0
- package/lib/components/Menu/Menu.js +76 -0
- package/lib/components/Menu/Menu.js.flow +85 -0
- package/lib/components/Menu/Menu.module.css +124 -0
- package/lib/components/Menu/index.js +12 -0
- package/lib/components/Menu/index.js.flow +4 -0
- package/lib/components/Modal/Modal.js +121 -0
- package/lib/components/Modal/Modal.js.flow +157 -0
- package/lib/components/Modal/Modal.module.css +62 -0
- package/lib/components/Modal/index.js +12 -0
- package/lib/components/Modal/index.js.flow +3 -0
- package/lib/components/Notification/Notification.js +89 -0
- package/lib/components/Notification/Notification.js.flow +136 -0
- package/lib/components/Notification/Notification.module.css +54 -0
- package/lib/components/Notification/index.js +18 -0
- package/lib/components/Notification/index.js.flow +3 -0
- package/lib/components/Panel/Panel.js +96 -0
- package/lib/components/Panel/Panel.js.flow +109 -0
- package/lib/components/Panel/Panel.module.css +77 -0
- package/lib/components/Panel/index.js +30 -0
- package/lib/components/Panel/index.js.flow +10 -0
- package/lib/components/RadioButton/RadioButton.js +76 -0
- package/lib/components/RadioButton/RadioButton.js.flow +102 -0
- package/lib/components/RadioButton/RadioButton.module.css +122 -0
- package/lib/components/RadioButton/RadioGroup.js +60 -0
- package/lib/components/RadioButton/RadioGroup.js.flow +85 -0
- package/lib/components/RadioButton/RadioGroup.module.css +47 -0
- package/lib/components/RadioButton/index.js +19 -0
- package/lib/components/RadioButton/index.js.flow +3 -0
- package/lib/components/SearchInput/SearchInput.js +47 -0
- package/lib/components/SearchInput/SearchInput.js.flow +73 -0
- package/lib/components/SearchInput/SearchInput.module.css +11 -0
- package/lib/components/SearchInput/index.js +12 -0
- package/lib/components/SearchInput/index.js.flow +4 -0
- package/lib/components/Text/Text.js +195 -0
- package/lib/components/Text/Text.js.flow +160 -0
- package/lib/components/Text/index.js +103 -0
- package/lib/components/Text/index.js.flow +21 -0
- package/lib/components/Textarea/Textarea.js +95 -0
- package/lib/components/Textarea/Textarea.js.flow +133 -0
- package/lib/components/Textarea/Textarea.module.css +110 -0
- package/lib/components/Textarea/index.js +12 -0
- package/lib/components/Textarea/index.js.flow +4 -0
- package/lib/components/Toast/Toast.js +187 -0
- package/lib/components/Toast/Toast.js.flow +210 -0
- package/lib/components/Toast/Toast.module.css +52 -0
- package/lib/components/Toast/ToastContainer.js +129 -0
- package/lib/components/Toast/ToastContainer.js.flow +125 -0
- package/lib/components/Toast/ToastContainer.module.css +41 -0
- package/lib/components/Toast/ToastManager.js +62 -0
- package/lib/components/Toast/ToastManager.js.flow +67 -0
- package/lib/components/Toast/index.js +56 -0
- package/lib/components/Toast/index.js.flow +12 -0
- package/lib/components/Toggle/Toggle.js +69 -0
- package/lib/components/Toggle/Toggle.js.flow +94 -0
- package/lib/components/Toggle/Toggle.module.css +144 -0
- package/lib/components/Toggle/index.js +12 -0
- package/lib/components/Toggle/index.js.flow +2 -0
- package/lib/components/Tooltip/Tooltip.js +81 -0
- package/lib/components/Tooltip/Tooltip.js.flow +110 -0
- package/lib/components/Tooltip/Tooltip.module.css +16 -0
- package/lib/components/Tooltip/index.js +12 -0
- package/lib/components/Tooltip/index.js.flow +4 -0
- package/lib/components/Truncate/Truncate.js +28 -0
- package/lib/components/Truncate/Truncate.js.flow +22 -0
- package/lib/components/Truncate/Truncate.module.css +6 -0
- package/lib/components/Truncate/index.js +12 -0
- package/lib/components/Truncate/index.js.flow +4 -0
- package/lib/components/Typeahead/Typeahead.js +124 -0
- package/lib/components/Typeahead/Typeahead.js.flow +153 -0
- package/lib/components/Typeahead/Typeahead.module.css +10 -0
- package/lib/components/Typeahead/index.js +12 -0
- package/lib/components/Typeahead/index.js.flow +4 -0
- package/lib/hooks/index.js +27 -0
- package/lib/hooks/index.js.flow +4 -0
- package/lib/hooks/useMountTransition.js +25 -0
- package/lib/hooks/useMountTransition.js.flow +27 -0
- package/lib/hooks/useToastPortal.js +32 -0
- package/lib/hooks/useToastPortal.js.flow +30 -0
- package/lib/styles/animation.module.css +9 -0
- package/lib/styles/border.module.css +27 -0
- package/lib/styles/shadow.module.css +42 -0
- package/lib/styles/typography.module.css +227 -0
- package/lib/styles/variables/_border.css +21 -0
- package/lib/styles/variables/_border.js +29 -0
- package/lib/styles/variables/_border.js.flow +23 -0
- package/lib/styles/variables/_color.css +131 -0
- package/lib/styles/variables/_color.js +139 -0
- package/lib/styles/variables/_color.js.flow +133 -0
- package/lib/styles/variables/_elevation.css +11 -0
- package/lib/styles/variables/_elevation.js +19 -0
- package/lib/styles/variables/_elevation.js.flow +13 -0
- package/lib/styles/variables/_font.css +51 -0
- package/lib/styles/variables/_font.js +59 -0
- package/lib/styles/variables/_font.js.flow +53 -0
- package/lib/styles/variables/_motion.css +11 -0
- package/lib/styles/variables/_motion.js +19 -0
- package/lib/styles/variables/_motion.js.flow +13 -0
- package/lib/styles/variables/_opacity.css +29 -0
- package/lib/styles/variables/_opacity.js +37 -0
- package/lib/styles/variables/_opacity.js.flow +31 -0
- package/lib/styles/variables/_shadow.css +47 -0
- package/lib/styles/variables/_shadow.js +55 -0
- package/lib/styles/variables/_shadow.js.flow +49 -0
- package/lib/styles/variables/_size.css +59 -0
- package/lib/styles/variables/_size.js +67 -0
- package/lib/styles/variables/_size.js.flow +61 -0
- package/lib/styles/variables/_space.css +23 -0
- package/lib/styles/variables/_space.js +31 -0
- package/lib/styles/variables/_space.js.flow +25 -0
- package/lib/types/common.js +1 -0
- package/lib/types/common.js.flow +3 -0
- package/lib/types/toast.js +24 -0
- package/lib/types/toast.js.flow +41 -0
- package/lib/types/typography.js +22 -0
- package/lib/types/typography.js.flow +18 -0
- package/lib/utils/classify.js +33 -0
- package/lib/utils/classify.js.flow +29 -0
- package/lib/utils/click-away.js +110 -0
- package/lib/utils/click-away.js.flow +134 -0
- package/lib/utils/dom.js +202 -0
- package/lib/utils/dom.js.flow +238 -0
- package/lib/utils/helpers.js +16 -0
- package/lib/utils/helpers.js.flow +11 -0
- package/lib/utils/makeClassNameComponent.js +58 -0
- package/lib/utils/makeClassNameComponent.js.flow +71 -0
- package/lib/utils/merge-refs.js +17 -0
- package/lib/utils/merge-refs.js.flow +14 -0
- package/lint-staged.config.js +5 -0
- package/package.json +114 -0
- package/postcss.config.js +3 -0
- package/pull_request_template.md +48 -0
- package/settings.json +3 -0
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
@value (
|
|
2
|
+
colorTextPrimary,
|
|
3
|
+
colorTextSecondary,
|
|
4
|
+
colorTextTertiary,
|
|
5
|
+
colorTextDisabled,
|
|
6
|
+
colorTextSelected,
|
|
7
|
+
colorTextNeutral,
|
|
8
|
+
colorTextSuccess,
|
|
9
|
+
colorTextInformation,
|
|
10
|
+
colorTextWarning,
|
|
11
|
+
colorTextDanger,
|
|
12
|
+
colorTextInversePrimary,
|
|
13
|
+
colorTextInverseSecondary
|
|
14
|
+
) from 'variables/_color.css';
|
|
15
|
+
|
|
16
|
+
@value (
|
|
17
|
+
fontFamilyCentra,
|
|
18
|
+
fontSize46,
|
|
19
|
+
fontSize26,
|
|
20
|
+
fontSize18,
|
|
21
|
+
fontSize16,
|
|
22
|
+
fontSize14,
|
|
23
|
+
fontSize13,
|
|
24
|
+
fontSize12,
|
|
25
|
+
fontWeightMedium,
|
|
26
|
+
fontWeightBook,
|
|
27
|
+
fontLineHeight100,
|
|
28
|
+
fontLineHeight120,
|
|
29
|
+
fontLineHeight140,
|
|
30
|
+
fontLineHeight150,
|
|
31
|
+
fontLineHeight170,
|
|
32
|
+
fontLetterSpacing0,
|
|
33
|
+
fontLetterSpacing0,
|
|
34
|
+
fontLetterSpacingMinus1,
|
|
35
|
+
fontLetterSpacingMinus2,
|
|
36
|
+
fontLetterSpacingMinus4,
|
|
37
|
+
fontLetterSpacing1,
|
|
38
|
+
fontLetterSpacing2,
|
|
39
|
+
fontLetterSpacing4
|
|
40
|
+
) from 'variables/_font.css';
|
|
41
|
+
|
|
42
|
+
@value (size24, size18) from 'variables/_size.css';
|
|
43
|
+
|
|
44
|
+
.baseType {
|
|
45
|
+
/* Design system uses this font */
|
|
46
|
+
font-family: 'Centra No 2';
|
|
47
|
+
font-style: normal;
|
|
48
|
+
line-height: fontLineHeight120;
|
|
49
|
+
margin: 0;
|
|
50
|
+
color: colorTextPrimary;
|
|
51
|
+
letter-spacing: fontLetterSpacing0;
|
|
52
|
+
font-weight: fontWeightMedium;
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.jumboMedium {
|
|
58
|
+
composes: baseType;
|
|
59
|
+
font-size: fontSize46;
|
|
60
|
+
line-height: fontLineHeight100;
|
|
61
|
+
letter-spacing: fontLetterSpacingMinus4;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.titleMedium {
|
|
65
|
+
composes: baseType;
|
|
66
|
+
font-size: fontSize26;
|
|
67
|
+
letter-spacing: fontLetterSpacingMinus2;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.subTitleLarge {
|
|
71
|
+
composes: baseType;
|
|
72
|
+
font-size: fontSize18;
|
|
73
|
+
letter-spacing: fontLetterSpacingMinus1;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.subTitleMedium {
|
|
77
|
+
composes: baseType;
|
|
78
|
+
font-size: fontSize16;
|
|
79
|
+
letter-spacing: fontLetterSpacingMinus1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.subTitleSmall {
|
|
83
|
+
composes: baseType;
|
|
84
|
+
font-size: fontSize14;
|
|
85
|
+
letter-spacing: fontLetterSpacingMinus1;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.subTitleExtraSmall {
|
|
89
|
+
composes: baseType;
|
|
90
|
+
font-size: fontSize12;
|
|
91
|
+
letter-spacing: fontLetterSpacing0;
|
|
92
|
+
line-height: fontLineHeight140;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.buttonTextMedium {
|
|
96
|
+
composes: baseType;
|
|
97
|
+
font-size: fontSize14;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.buttonTextSmall {
|
|
101
|
+
composes: baseType;
|
|
102
|
+
font-size: fontSize13;
|
|
103
|
+
letter-spacing: fontLetterSpacing1;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.formInputMedium {
|
|
107
|
+
composes: baseType;
|
|
108
|
+
font-size: fontSize14;
|
|
109
|
+
line-height: fontLineHeight150;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.formInputSmall {
|
|
113
|
+
composes: baseType;
|
|
114
|
+
font-size: fontSize13;
|
|
115
|
+
line-height: fontLineHeight150;
|
|
116
|
+
letter-spacing: fontLetterSpacing1;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.bodyLarge {
|
|
120
|
+
composes: baseType;
|
|
121
|
+
font-size: fontSize16;
|
|
122
|
+
font-weight: fontWeightBook;
|
|
123
|
+
line-height: fontLineHeight150;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.bodyMedium {
|
|
127
|
+
composes: baseType;
|
|
128
|
+
font-size: fontSize14;
|
|
129
|
+
font-weight: fontWeightBook;
|
|
130
|
+
line-height: fontLineHeight150;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.bodySmall {
|
|
134
|
+
composes: baseType;
|
|
135
|
+
font-size: fontSize12;
|
|
136
|
+
font-weight: fontWeightBook;
|
|
137
|
+
line-height: fontLineHeight150;
|
|
138
|
+
letter-spacing: fontLetterSpacing4;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.formLabelMedium {
|
|
142
|
+
composes: baseType;
|
|
143
|
+
font-size: fontSize14;
|
|
144
|
+
line-height: fontLineHeight140;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.formLabelSmall {
|
|
148
|
+
composes: baseType;
|
|
149
|
+
font-size: fontSize12;
|
|
150
|
+
line-height: fontLineHeight140;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.primary {
|
|
154
|
+
color: colorTextPrimary;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.secondary {
|
|
158
|
+
color: colorTextSecondary;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.tertiary {
|
|
162
|
+
color: colorTextTertiary;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.disabled {
|
|
166
|
+
color: colorTextDisabled;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.selected {
|
|
170
|
+
color: colorTextSelected;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.neutral {
|
|
174
|
+
color: colorTextNeutral;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.success {
|
|
178
|
+
color: colorTextSuccess;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.information {
|
|
182
|
+
color: colorTextInformation;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.warning {
|
|
186
|
+
color: colorTextWarning;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.danger {
|
|
190
|
+
color: colorTextDanger;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.inversePrimary {
|
|
194
|
+
color: colorTextInversePrimary;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.inverseSecondary {
|
|
198
|
+
color: colorTextInverseSecondary;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.smallIcon {
|
|
202
|
+
font-size: fontSize14;
|
|
203
|
+
height: size18;
|
|
204
|
+
width: size18;
|
|
205
|
+
min-width: size18;
|
|
206
|
+
min-height: size18;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.mediumIcon {
|
|
210
|
+
font-size: fontSize18;
|
|
211
|
+
height: size24;
|
|
212
|
+
width: size24;
|
|
213
|
+
min-width: size24;
|
|
214
|
+
min-height: size24;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.centerAlignFlex {
|
|
218
|
+
display: flex;
|
|
219
|
+
align-items: center;
|
|
220
|
+
justify-content: center;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.truncate {
|
|
224
|
+
white-space: nowrap;
|
|
225
|
+
overflow: hidden;
|
|
226
|
+
text-overflow: ellipsis;
|
|
227
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@value borderWidthNone: 0px;
|
|
2
|
+
|
|
3
|
+
@value borderWidthPrimary: 1px;
|
|
4
|
+
|
|
5
|
+
@value borderWidthSecondary: 1.5px;
|
|
6
|
+
|
|
7
|
+
@value borderWidthTertiary: 2px;
|
|
8
|
+
|
|
9
|
+
@value borderRadiusNone: 0px;
|
|
10
|
+
|
|
11
|
+
@value borderRadiusXSmall: 4px;
|
|
12
|
+
|
|
13
|
+
@value borderRadiusRadioButton: 6px;
|
|
14
|
+
|
|
15
|
+
@value borderRadiusSmall: 8px;
|
|
16
|
+
|
|
17
|
+
@value borderRadiusMedium: 12px;
|
|
18
|
+
|
|
19
|
+
@value borderRadiusLarge: 20px;
|
|
20
|
+
|
|
21
|
+
@value borderRadiusCircle: 50%;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.borderWidthTertiary = exports.borderWidthSecondary = exports.borderWidthPrimary = exports.borderWidthNone = exports.borderRadiusXSmall = exports.borderRadiusSmall = exports.borderRadiusRadioButton = exports.borderRadiusNone = exports.borderRadiusMedium = exports.borderRadiusLarge = exports.borderRadiusCircle = void 0;
|
|
7
|
+
|
|
8
|
+
const borderWidthNone = '0px';
|
|
9
|
+
exports.borderWidthNone = borderWidthNone;
|
|
10
|
+
const borderWidthPrimary = '1px';
|
|
11
|
+
exports.borderWidthPrimary = borderWidthPrimary;
|
|
12
|
+
const borderWidthSecondary = '1.5px';
|
|
13
|
+
exports.borderWidthSecondary = borderWidthSecondary;
|
|
14
|
+
const borderWidthTertiary = '2px';
|
|
15
|
+
exports.borderWidthTertiary = borderWidthTertiary;
|
|
16
|
+
const borderRadiusNone = '0px';
|
|
17
|
+
exports.borderRadiusNone = borderRadiusNone;
|
|
18
|
+
const borderRadiusXSmall = '4px';
|
|
19
|
+
exports.borderRadiusXSmall = borderRadiusXSmall;
|
|
20
|
+
const borderRadiusRadioButton = '6px';
|
|
21
|
+
exports.borderRadiusRadioButton = borderRadiusRadioButton;
|
|
22
|
+
const borderRadiusSmall = '8px';
|
|
23
|
+
exports.borderRadiusSmall = borderRadiusSmall;
|
|
24
|
+
const borderRadiusMedium = '12px';
|
|
25
|
+
exports.borderRadiusMedium = borderRadiusMedium;
|
|
26
|
+
const borderRadiusLarge = '20px';
|
|
27
|
+
exports.borderRadiusLarge = borderRadiusLarge;
|
|
28
|
+
const borderRadiusCircle = '50%';
|
|
29
|
+
exports.borderRadiusCircle = borderRadiusCircle;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @flow strict
|
|
2
|
+
|
|
3
|
+
export const borderWidthNone = '0px';
|
|
4
|
+
|
|
5
|
+
export const borderWidthPrimary = '1px';
|
|
6
|
+
|
|
7
|
+
export const borderWidthSecondary = '1.5px';
|
|
8
|
+
|
|
9
|
+
export const borderWidthTertiary = '2px';
|
|
10
|
+
|
|
11
|
+
export const borderRadiusNone = '0px';
|
|
12
|
+
|
|
13
|
+
export const borderRadiusXSmall = '4px';
|
|
14
|
+
|
|
15
|
+
export const borderRadiusRadioButton = '6px';
|
|
16
|
+
|
|
17
|
+
export const borderRadiusSmall = '8px';
|
|
18
|
+
|
|
19
|
+
export const borderRadiusMedium = '12px';
|
|
20
|
+
|
|
21
|
+
export const borderRadiusLarge = '20px';
|
|
22
|
+
|
|
23
|
+
export const borderRadiusCircle = '50%';
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
@value colorTextPrimary: #17172A;
|
|
2
|
+
|
|
3
|
+
@value colorTextSecondary: #565656;
|
|
4
|
+
|
|
5
|
+
@value colorTextTertiary: #7e7e7e;
|
|
6
|
+
|
|
7
|
+
@value colorTextDisabled: #d1d1d1;
|
|
8
|
+
|
|
9
|
+
@value colorTextSelected: #5c34cd;
|
|
10
|
+
|
|
11
|
+
@value colorTextNeutral: #706f9b;
|
|
12
|
+
|
|
13
|
+
@value colorTextSuccess: #03964d;
|
|
14
|
+
|
|
15
|
+
@value colorTextInformation: #0769f0;
|
|
16
|
+
|
|
17
|
+
@value colorTextWarning: #df7e0c;
|
|
18
|
+
|
|
19
|
+
@value colorTextDanger: #e31c4c;
|
|
20
|
+
|
|
21
|
+
@value colorTextInversePrimary: #ffffff;
|
|
22
|
+
|
|
23
|
+
@value colorTextInverseSecondary: #d1d1d1;
|
|
24
|
+
|
|
25
|
+
@value colorBorderPrimary: #e1e1e1;
|
|
26
|
+
|
|
27
|
+
@value colorBorderSecondary: #d1d1d1;
|
|
28
|
+
|
|
29
|
+
@value colorBorderDanger: #e31c4c;
|
|
30
|
+
|
|
31
|
+
@value colorBackgroundPrimary: #fafafa;
|
|
32
|
+
|
|
33
|
+
@value colorBackgroundSecondary: #f4f4f4;
|
|
34
|
+
|
|
35
|
+
@value colorBackgroundTertiary: #ffffff;
|
|
36
|
+
|
|
37
|
+
@value colorFocusPrimary: #ccc0f0;
|
|
38
|
+
|
|
39
|
+
@value colorFocusDanger: #f6b9c8;
|
|
40
|
+
|
|
41
|
+
@value colorFillPrimary: #5c34cd;
|
|
42
|
+
|
|
43
|
+
@value colorFillSecondary: #efebfa;
|
|
44
|
+
|
|
45
|
+
@value colorFillNone: rgba(255,255,255,0);
|
|
46
|
+
|
|
47
|
+
@value colorFillDisabled: #f4f4f4;
|
|
48
|
+
|
|
49
|
+
@value colorTooltipFill: rgba(23, 23, 42, 0.95);
|
|
50
|
+
|
|
51
|
+
@value colorBackdropFill: rgba(23, 23, 42, 0.7);
|
|
52
|
+
|
|
53
|
+
@value colorButtonFillPrimaryEnabled: #5c34cd;
|
|
54
|
+
|
|
55
|
+
@value colorButtonFillPrimaryHovered: #412592;
|
|
56
|
+
|
|
57
|
+
@value colorButtonFillPrimaryPressed: #412592;
|
|
58
|
+
|
|
59
|
+
@value colorButtonFillSecondaryEnabled: #efebfa;
|
|
60
|
+
|
|
61
|
+
@value colorButtonFillSecondaryHovered: #ccc0f0;
|
|
62
|
+
|
|
63
|
+
@value colorButtonFillSecondaryPressed: #ccc0f0;
|
|
64
|
+
|
|
65
|
+
@value colorButtonFillTertiaryEnabled: rgba(255,255,255,0);
|
|
66
|
+
|
|
67
|
+
@value colorButtonFillTertiaryHovered: #EBEBEB;
|
|
68
|
+
|
|
69
|
+
@value colorButtonFillTertiaryPressed: #EBEBEB;
|
|
70
|
+
|
|
71
|
+
@value colorButtonFillGhostEnabled: rgba(255,255,255,0);
|
|
72
|
+
|
|
73
|
+
@value colorButtonFillGhostHovered: #EBEBEB;
|
|
74
|
+
|
|
75
|
+
@value colorButtonFillGhostPressed: #EBEBEB;
|
|
76
|
+
|
|
77
|
+
@value colorButtonFillDangerEnabled: #e31c4c;
|
|
78
|
+
|
|
79
|
+
@value colorButtonFillDangerHovered: #cf1945;
|
|
80
|
+
|
|
81
|
+
@value colorButtonFillDangerPressed: #cf1945;
|
|
82
|
+
|
|
83
|
+
@value colorNeutral: #706f9b;
|
|
84
|
+
|
|
85
|
+
@value colorNeutralLightest: #f1f1f5;
|
|
86
|
+
|
|
87
|
+
@value colorNeutralLight: #bdbdd1;
|
|
88
|
+
|
|
89
|
+
@value colorNeutralDark: #504f6e;
|
|
90
|
+
|
|
91
|
+
@value colorNeutralDarkest: #2C2C47;
|
|
92
|
+
|
|
93
|
+
@value colorSuccess: #03964d;
|
|
94
|
+
|
|
95
|
+
@value colorSuccessLightest: #e6f5ed;
|
|
96
|
+
|
|
97
|
+
@value colorSuccessLight: #8bcfad;
|
|
98
|
+
|
|
99
|
+
@value colorSuccessDark: #026b37;
|
|
100
|
+
|
|
101
|
+
@value colorSuccessDarkest: #013f20;
|
|
102
|
+
|
|
103
|
+
@value colorInformation: #0769f0;
|
|
104
|
+
|
|
105
|
+
@value colorInformationLightest: #e6f0fe;
|
|
106
|
+
|
|
107
|
+
@value colorInformationLight: #8dbaf8;
|
|
108
|
+
|
|
109
|
+
@value colorInformationDark: #054baa;
|
|
110
|
+
|
|
111
|
+
@value colorInformationDarkest: #032c65;
|
|
112
|
+
|
|
113
|
+
@value colorWarning: #df7e0c;
|
|
114
|
+
|
|
115
|
+
@value colorWarningLightest: #fcf2e7;
|
|
116
|
+
|
|
117
|
+
@value colorWarningLight: #f0c48f;
|
|
118
|
+
|
|
119
|
+
@value colorWarningDark: #9e5909;
|
|
120
|
+
|
|
121
|
+
@value colorWarningDarkest: #5e3505;
|
|
122
|
+
|
|
123
|
+
@value colorDanger: #e31c4c;
|
|
124
|
+
|
|
125
|
+
@value colorDangerLightest: #fce8ed;
|
|
126
|
+
|
|
127
|
+
@value colorDangerLight: #f297ad;
|
|
128
|
+
|
|
129
|
+
@value colorDangerDark: #a11436;
|
|
130
|
+
|
|
131
|
+
@value colorDangerDarkest: #5f0c20;
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.colorWarningLightest = exports.colorWarningLight = exports.colorWarningDarkest = exports.colorWarningDark = exports.colorWarning = exports.colorTooltipFill = exports.colorTextWarning = exports.colorTextTertiary = exports.colorTextSuccess = exports.colorTextSelected = exports.colorTextSecondary = exports.colorTextPrimary = exports.colorTextNeutral = exports.colorTextInverseSecondary = exports.colorTextInversePrimary = exports.colorTextInformation = exports.colorTextDisabled = exports.colorTextDanger = exports.colorSuccessLightest = exports.colorSuccessLight = exports.colorSuccessDarkest = exports.colorSuccessDark = exports.colorSuccess = exports.colorNeutralLightest = exports.colorNeutralLight = exports.colorNeutralDarkest = exports.colorNeutralDark = exports.colorNeutral = exports.colorInformationLightest = exports.colorInformationLight = exports.colorInformationDarkest = exports.colorInformationDark = exports.colorInformation = exports.colorFocusPrimary = exports.colorFocusDanger = exports.colorFillSecondary = exports.colorFillPrimary = exports.colorFillNone = exports.colorFillDisabled = exports.colorDangerLightest = exports.colorDangerLight = exports.colorDangerDarkest = exports.colorDangerDark = exports.colorDanger = exports.colorButtonFillTertiaryPressed = exports.colorButtonFillTertiaryHovered = exports.colorButtonFillTertiaryEnabled = exports.colorButtonFillSecondaryPressed = exports.colorButtonFillSecondaryHovered = exports.colorButtonFillSecondaryEnabled = exports.colorButtonFillPrimaryPressed = exports.colorButtonFillPrimaryHovered = exports.colorButtonFillPrimaryEnabled = exports.colorButtonFillGhostPressed = exports.colorButtonFillGhostHovered = exports.colorButtonFillGhostEnabled = exports.colorButtonFillDangerPressed = exports.colorButtonFillDangerHovered = exports.colorButtonFillDangerEnabled = exports.colorBorderSecondary = exports.colorBorderPrimary = exports.colorBorderDanger = exports.colorBackgroundTertiary = exports.colorBackgroundSecondary = exports.colorBackgroundPrimary = exports.colorBackdropFill = void 0;
|
|
7
|
+
|
|
8
|
+
const colorTextPrimary = '#17172A';
|
|
9
|
+
exports.colorTextPrimary = colorTextPrimary;
|
|
10
|
+
const colorTextSecondary = '#565656';
|
|
11
|
+
exports.colorTextSecondary = colorTextSecondary;
|
|
12
|
+
const colorTextTertiary = '#7e7e7e';
|
|
13
|
+
exports.colorTextTertiary = colorTextTertiary;
|
|
14
|
+
const colorTextDisabled = '#d1d1d1';
|
|
15
|
+
exports.colorTextDisabled = colorTextDisabled;
|
|
16
|
+
const colorTextSelected = '#5c34cd';
|
|
17
|
+
exports.colorTextSelected = colorTextSelected;
|
|
18
|
+
const colorTextNeutral = '#706f9b';
|
|
19
|
+
exports.colorTextNeutral = colorTextNeutral;
|
|
20
|
+
const colorTextSuccess = '#03964d';
|
|
21
|
+
exports.colorTextSuccess = colorTextSuccess;
|
|
22
|
+
const colorTextInformation = '#0769f0';
|
|
23
|
+
exports.colorTextInformation = colorTextInformation;
|
|
24
|
+
const colorTextWarning = '#df7e0c';
|
|
25
|
+
exports.colorTextWarning = colorTextWarning;
|
|
26
|
+
const colorTextDanger = '#e31c4c';
|
|
27
|
+
exports.colorTextDanger = colorTextDanger;
|
|
28
|
+
const colorTextInversePrimary = '#ffffff';
|
|
29
|
+
exports.colorTextInversePrimary = colorTextInversePrimary;
|
|
30
|
+
const colorTextInverseSecondary = '#d1d1d1';
|
|
31
|
+
exports.colorTextInverseSecondary = colorTextInverseSecondary;
|
|
32
|
+
const colorBorderPrimary = '#e1e1e1';
|
|
33
|
+
exports.colorBorderPrimary = colorBorderPrimary;
|
|
34
|
+
const colorBorderSecondary = '#d1d1d1';
|
|
35
|
+
exports.colorBorderSecondary = colorBorderSecondary;
|
|
36
|
+
const colorBorderDanger = '#e31c4c';
|
|
37
|
+
exports.colorBorderDanger = colorBorderDanger;
|
|
38
|
+
const colorBackgroundPrimary = '#fafafa';
|
|
39
|
+
exports.colorBackgroundPrimary = colorBackgroundPrimary;
|
|
40
|
+
const colorBackgroundSecondary = '#f4f4f4';
|
|
41
|
+
exports.colorBackgroundSecondary = colorBackgroundSecondary;
|
|
42
|
+
const colorBackgroundTertiary = '#ffffff';
|
|
43
|
+
exports.colorBackgroundTertiary = colorBackgroundTertiary;
|
|
44
|
+
const colorFocusPrimary = '#ccc0f0';
|
|
45
|
+
exports.colorFocusPrimary = colorFocusPrimary;
|
|
46
|
+
const colorFocusDanger = '#f6b9c8';
|
|
47
|
+
exports.colorFocusDanger = colorFocusDanger;
|
|
48
|
+
const colorFillPrimary = '#5c34cd';
|
|
49
|
+
exports.colorFillPrimary = colorFillPrimary;
|
|
50
|
+
const colorFillSecondary = '#efebfa';
|
|
51
|
+
exports.colorFillSecondary = colorFillSecondary;
|
|
52
|
+
const colorFillNone = 'rgba(255,255,255,0)';
|
|
53
|
+
exports.colorFillNone = colorFillNone;
|
|
54
|
+
const colorFillDisabled = '#f4f4f4';
|
|
55
|
+
exports.colorFillDisabled = colorFillDisabled;
|
|
56
|
+
const colorTooltipFill = 'rgba(23, 23, 42, 0.95)';
|
|
57
|
+
exports.colorTooltipFill = colorTooltipFill;
|
|
58
|
+
const colorBackdropFill = 'rgba(23, 23, 42, 0.7)';
|
|
59
|
+
exports.colorBackdropFill = colorBackdropFill;
|
|
60
|
+
const colorButtonFillPrimaryEnabled = '#5c34cd';
|
|
61
|
+
exports.colorButtonFillPrimaryEnabled = colorButtonFillPrimaryEnabled;
|
|
62
|
+
const colorButtonFillPrimaryHovered = '#412592';
|
|
63
|
+
exports.colorButtonFillPrimaryHovered = colorButtonFillPrimaryHovered;
|
|
64
|
+
const colorButtonFillPrimaryPressed = '#412592';
|
|
65
|
+
exports.colorButtonFillPrimaryPressed = colorButtonFillPrimaryPressed;
|
|
66
|
+
const colorButtonFillSecondaryEnabled = '#efebfa';
|
|
67
|
+
exports.colorButtonFillSecondaryEnabled = colorButtonFillSecondaryEnabled;
|
|
68
|
+
const colorButtonFillSecondaryHovered = '#ccc0f0';
|
|
69
|
+
exports.colorButtonFillSecondaryHovered = colorButtonFillSecondaryHovered;
|
|
70
|
+
const colorButtonFillSecondaryPressed = '#ccc0f0';
|
|
71
|
+
exports.colorButtonFillSecondaryPressed = colorButtonFillSecondaryPressed;
|
|
72
|
+
const colorButtonFillTertiaryEnabled = 'rgba(255,255,255,0)';
|
|
73
|
+
exports.colorButtonFillTertiaryEnabled = colorButtonFillTertiaryEnabled;
|
|
74
|
+
const colorButtonFillTertiaryHovered = '#EBEBEB';
|
|
75
|
+
exports.colorButtonFillTertiaryHovered = colorButtonFillTertiaryHovered;
|
|
76
|
+
const colorButtonFillTertiaryPressed = '#EBEBEB';
|
|
77
|
+
exports.colorButtonFillTertiaryPressed = colorButtonFillTertiaryPressed;
|
|
78
|
+
const colorButtonFillGhostEnabled = 'rgba(255,255,255,0)';
|
|
79
|
+
exports.colorButtonFillGhostEnabled = colorButtonFillGhostEnabled;
|
|
80
|
+
const colorButtonFillGhostHovered = '#EBEBEB';
|
|
81
|
+
exports.colorButtonFillGhostHovered = colorButtonFillGhostHovered;
|
|
82
|
+
const colorButtonFillGhostPressed = '#EBEBEB';
|
|
83
|
+
exports.colorButtonFillGhostPressed = colorButtonFillGhostPressed;
|
|
84
|
+
const colorButtonFillDangerEnabled = '#e31c4c';
|
|
85
|
+
exports.colorButtonFillDangerEnabled = colorButtonFillDangerEnabled;
|
|
86
|
+
const colorButtonFillDangerHovered = '#cf1945';
|
|
87
|
+
exports.colorButtonFillDangerHovered = colorButtonFillDangerHovered;
|
|
88
|
+
const colorButtonFillDangerPressed = '#cf1945';
|
|
89
|
+
exports.colorButtonFillDangerPressed = colorButtonFillDangerPressed;
|
|
90
|
+
const colorNeutral = '#706f9b';
|
|
91
|
+
exports.colorNeutral = colorNeutral;
|
|
92
|
+
const colorNeutralLightest = '#f1f1f5';
|
|
93
|
+
exports.colorNeutralLightest = colorNeutralLightest;
|
|
94
|
+
const colorNeutralLight = '#bdbdd1';
|
|
95
|
+
exports.colorNeutralLight = colorNeutralLight;
|
|
96
|
+
const colorNeutralDark = '#504f6e';
|
|
97
|
+
exports.colorNeutralDark = colorNeutralDark;
|
|
98
|
+
const colorNeutralDarkest = '#2C2C47';
|
|
99
|
+
exports.colorNeutralDarkest = colorNeutralDarkest;
|
|
100
|
+
const colorSuccess = '#03964d';
|
|
101
|
+
exports.colorSuccess = colorSuccess;
|
|
102
|
+
const colorSuccessLightest = '#e6f5ed';
|
|
103
|
+
exports.colorSuccessLightest = colorSuccessLightest;
|
|
104
|
+
const colorSuccessLight = '#8bcfad';
|
|
105
|
+
exports.colorSuccessLight = colorSuccessLight;
|
|
106
|
+
const colorSuccessDark = '#026b37';
|
|
107
|
+
exports.colorSuccessDark = colorSuccessDark;
|
|
108
|
+
const colorSuccessDarkest = '#013f20';
|
|
109
|
+
exports.colorSuccessDarkest = colorSuccessDarkest;
|
|
110
|
+
const colorInformation = '#0769f0';
|
|
111
|
+
exports.colorInformation = colorInformation;
|
|
112
|
+
const colorInformationLightest = '#e6f0fe';
|
|
113
|
+
exports.colorInformationLightest = colorInformationLightest;
|
|
114
|
+
const colorInformationLight = '#8dbaf8';
|
|
115
|
+
exports.colorInformationLight = colorInformationLight;
|
|
116
|
+
const colorInformationDark = '#054baa';
|
|
117
|
+
exports.colorInformationDark = colorInformationDark;
|
|
118
|
+
const colorInformationDarkest = '#032c65';
|
|
119
|
+
exports.colorInformationDarkest = colorInformationDarkest;
|
|
120
|
+
const colorWarning = '#df7e0c';
|
|
121
|
+
exports.colorWarning = colorWarning;
|
|
122
|
+
const colorWarningLightest = '#fcf2e7';
|
|
123
|
+
exports.colorWarningLightest = colorWarningLightest;
|
|
124
|
+
const colorWarningLight = '#f0c48f';
|
|
125
|
+
exports.colorWarningLight = colorWarningLight;
|
|
126
|
+
const colorWarningDark = '#9e5909';
|
|
127
|
+
exports.colorWarningDark = colorWarningDark;
|
|
128
|
+
const colorWarningDarkest = '#5e3505';
|
|
129
|
+
exports.colorWarningDarkest = colorWarningDarkest;
|
|
130
|
+
const colorDanger = '#e31c4c';
|
|
131
|
+
exports.colorDanger = colorDanger;
|
|
132
|
+
const colorDangerLightest = '#fce8ed';
|
|
133
|
+
exports.colorDangerLightest = colorDangerLightest;
|
|
134
|
+
const colorDangerLight = '#f297ad';
|
|
135
|
+
exports.colorDangerLight = colorDangerLight;
|
|
136
|
+
const colorDangerDark = '#a11436';
|
|
137
|
+
exports.colorDangerDark = colorDangerDark;
|
|
138
|
+
const colorDangerDarkest = '#5f0c20';
|
|
139
|
+
exports.colorDangerDarkest = colorDangerDarkest;
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
// @flow strict
|
|
2
|
+
|
|
3
|
+
export const colorTextPrimary = '#17172A';
|
|
4
|
+
|
|
5
|
+
export const colorTextSecondary = '#565656';
|
|
6
|
+
|
|
7
|
+
export const colorTextTertiary = '#7e7e7e';
|
|
8
|
+
|
|
9
|
+
export const colorTextDisabled = '#d1d1d1';
|
|
10
|
+
|
|
11
|
+
export const colorTextSelected = '#5c34cd';
|
|
12
|
+
|
|
13
|
+
export const colorTextNeutral = '#706f9b';
|
|
14
|
+
|
|
15
|
+
export const colorTextSuccess = '#03964d';
|
|
16
|
+
|
|
17
|
+
export const colorTextInformation = '#0769f0';
|
|
18
|
+
|
|
19
|
+
export const colorTextWarning = '#df7e0c';
|
|
20
|
+
|
|
21
|
+
export const colorTextDanger = '#e31c4c';
|
|
22
|
+
|
|
23
|
+
export const colorTextInversePrimary = '#ffffff';
|
|
24
|
+
|
|
25
|
+
export const colorTextInverseSecondary = '#d1d1d1';
|
|
26
|
+
|
|
27
|
+
export const colorBorderPrimary = '#e1e1e1';
|
|
28
|
+
|
|
29
|
+
export const colorBorderSecondary = '#d1d1d1';
|
|
30
|
+
|
|
31
|
+
export const colorBorderDanger = '#e31c4c';
|
|
32
|
+
|
|
33
|
+
export const colorBackgroundPrimary = '#fafafa';
|
|
34
|
+
|
|
35
|
+
export const colorBackgroundSecondary = '#f4f4f4';
|
|
36
|
+
|
|
37
|
+
export const colorBackgroundTertiary = '#ffffff';
|
|
38
|
+
|
|
39
|
+
export const colorFocusPrimary = '#ccc0f0';
|
|
40
|
+
|
|
41
|
+
export const colorFocusDanger = '#f6b9c8';
|
|
42
|
+
|
|
43
|
+
export const colorFillPrimary = '#5c34cd';
|
|
44
|
+
|
|
45
|
+
export const colorFillSecondary = '#efebfa';
|
|
46
|
+
|
|
47
|
+
export const colorFillNone = 'rgba(255,255,255,0)';
|
|
48
|
+
|
|
49
|
+
export const colorFillDisabled = '#f4f4f4';
|
|
50
|
+
|
|
51
|
+
export const colorTooltipFill = 'rgba(23, 23, 42, 0.95)';
|
|
52
|
+
|
|
53
|
+
export const colorBackdropFill = 'rgba(23, 23, 42, 0.7)';
|
|
54
|
+
|
|
55
|
+
export const colorButtonFillPrimaryEnabled = '#5c34cd';
|
|
56
|
+
|
|
57
|
+
export const colorButtonFillPrimaryHovered = '#412592';
|
|
58
|
+
|
|
59
|
+
export const colorButtonFillPrimaryPressed = '#412592';
|
|
60
|
+
|
|
61
|
+
export const colorButtonFillSecondaryEnabled = '#efebfa';
|
|
62
|
+
|
|
63
|
+
export const colorButtonFillSecondaryHovered = '#ccc0f0';
|
|
64
|
+
|
|
65
|
+
export const colorButtonFillSecondaryPressed = '#ccc0f0';
|
|
66
|
+
|
|
67
|
+
export const colorButtonFillTertiaryEnabled = 'rgba(255,255,255,0)';
|
|
68
|
+
|
|
69
|
+
export const colorButtonFillTertiaryHovered = '#EBEBEB';
|
|
70
|
+
|
|
71
|
+
export const colorButtonFillTertiaryPressed = '#EBEBEB';
|
|
72
|
+
|
|
73
|
+
export const colorButtonFillGhostEnabled = 'rgba(255,255,255,0)';
|
|
74
|
+
|
|
75
|
+
export const colorButtonFillGhostHovered = '#EBEBEB';
|
|
76
|
+
|
|
77
|
+
export const colorButtonFillGhostPressed = '#EBEBEB';
|
|
78
|
+
|
|
79
|
+
export const colorButtonFillDangerEnabled = '#e31c4c';
|
|
80
|
+
|
|
81
|
+
export const colorButtonFillDangerHovered = '#cf1945';
|
|
82
|
+
|
|
83
|
+
export const colorButtonFillDangerPressed = '#cf1945';
|
|
84
|
+
|
|
85
|
+
export const colorNeutral = '#706f9b';
|
|
86
|
+
|
|
87
|
+
export const colorNeutralLightest = '#f1f1f5';
|
|
88
|
+
|
|
89
|
+
export const colorNeutralLight = '#bdbdd1';
|
|
90
|
+
|
|
91
|
+
export const colorNeutralDark = '#504f6e';
|
|
92
|
+
|
|
93
|
+
export const colorNeutralDarkest = '#2C2C47';
|
|
94
|
+
|
|
95
|
+
export const colorSuccess = '#03964d';
|
|
96
|
+
|
|
97
|
+
export const colorSuccessLightest = '#e6f5ed';
|
|
98
|
+
|
|
99
|
+
export const colorSuccessLight = '#8bcfad';
|
|
100
|
+
|
|
101
|
+
export const colorSuccessDark = '#026b37';
|
|
102
|
+
|
|
103
|
+
export const colorSuccessDarkest = '#013f20';
|
|
104
|
+
|
|
105
|
+
export const colorInformation = '#0769f0';
|
|
106
|
+
|
|
107
|
+
export const colorInformationLightest = '#e6f0fe';
|
|
108
|
+
|
|
109
|
+
export const colorInformationLight = '#8dbaf8';
|
|
110
|
+
|
|
111
|
+
export const colorInformationDark = '#054baa';
|
|
112
|
+
|
|
113
|
+
export const colorInformationDarkest = '#032c65';
|
|
114
|
+
|
|
115
|
+
export const colorWarning = '#df7e0c';
|
|
116
|
+
|
|
117
|
+
export const colorWarningLightest = '#fcf2e7';
|
|
118
|
+
|
|
119
|
+
export const colorWarningLight = '#f0c48f';
|
|
120
|
+
|
|
121
|
+
export const colorWarningDark = '#9e5909';
|
|
122
|
+
|
|
123
|
+
export const colorWarningDarkest = '#5e3505';
|
|
124
|
+
|
|
125
|
+
export const colorDanger = '#e31c4c';
|
|
126
|
+
|
|
127
|
+
export const colorDangerLightest = '#fce8ed';
|
|
128
|
+
|
|
129
|
+
export const colorDangerLight = '#f297ad';
|
|
130
|
+
|
|
131
|
+
export const colorDangerDark = '#a11436';
|
|
132
|
+
|
|
133
|
+
export const colorDangerDarkest = '#5f0c20';
|