teachable-design-system 0.1.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 (113) hide show
  1. package/README.md +69 -0
  2. package/dist/index.cjs.js +3515 -0
  3. package/dist/index.cjs.js.map +1 -0
  4. package/dist/index.esm.js +3494 -0
  5. package/dist/index.esm.js.map +1 -0
  6. package/dist/src/assets/index.d.ts +2 -0
  7. package/dist/src/assets/index.d.ts.map +1 -0
  8. package/dist/src/components/Button/Button.d.ts +4 -0
  9. package/dist/src/components/Button/Button.d.ts.map +1 -0
  10. package/dist/src/components/Button/index.d.ts +2 -0
  11. package/dist/src/components/Button/index.d.ts.map +1 -0
  12. package/dist/src/components/Button/style.d.ts +13 -0
  13. package/dist/src/components/Button/style.d.ts.map +1 -0
  14. package/dist/src/components/CheckBox/CheckBox.d.ts +4 -0
  15. package/dist/src/components/CheckBox/CheckBox.d.ts.map +1 -0
  16. package/dist/src/components/CheckBox/index.d.ts +2 -0
  17. package/dist/src/components/CheckBox/index.d.ts.map +1 -0
  18. package/dist/src/components/CheckBox/style.d.ts +22 -0
  19. package/dist/src/components/CheckBox/style.d.ts.map +1 -0
  20. package/dist/src/components/Dropdown/Dropdown.d.ts +3 -0
  21. package/dist/src/components/Dropdown/Dropdown.d.ts.map +1 -0
  22. package/dist/src/components/Dropdown/index.d.ts +2 -0
  23. package/dist/src/components/Dropdown/index.d.ts.map +1 -0
  24. package/dist/src/components/Dropdown/style.d.ts +35 -0
  25. package/dist/src/components/Dropdown/style.d.ts.map +1 -0
  26. package/dist/src/components/Input/Input.d.ts +4 -0
  27. package/dist/src/components/Input/Input.d.ts.map +1 -0
  28. package/dist/src/components/Input/index.d.ts +2 -0
  29. package/dist/src/components/Input/index.d.ts.map +1 -0
  30. package/dist/src/components/Input/style.d.ts +5 -0
  31. package/dist/src/components/Input/style.d.ts.map +1 -0
  32. package/dist/src/components/Sidebar/Sidebar.d.ts +3 -0
  33. package/dist/src/components/Sidebar/Sidebar.d.ts.map +1 -0
  34. package/dist/src/components/Sidebar/index.d.ts +2 -0
  35. package/dist/src/components/Sidebar/index.d.ts.map +1 -0
  36. package/dist/src/components/Sidebar/style.d.ts +37 -0
  37. package/dist/src/components/Sidebar/style.d.ts.map +1 -0
  38. package/dist/src/components/TabBar/TabBar.d.ts +13 -0
  39. package/dist/src/components/TabBar/TabBar.d.ts.map +1 -0
  40. package/dist/src/components/TabBar/index.d.ts +2 -0
  41. package/dist/src/components/TabBar/index.d.ts.map +1 -0
  42. package/dist/src/components/TabBar/style.d.ts +21 -0
  43. package/dist/src/components/TabBar/style.d.ts.map +1 -0
  44. package/dist/src/components/index.d.ts +7 -0
  45. package/dist/src/components/index.d.ts.map +1 -0
  46. package/dist/src/foundation/index.d.ts +2 -0
  47. package/dist/src/foundation/index.d.ts.map +1 -0
  48. package/dist/src/index.d.ts +3 -0
  49. package/dist/src/index.d.ts.map +1 -0
  50. package/dist/src/style/index.d.ts +2 -0
  51. package/dist/src/style/index.d.ts.map +1 -0
  52. package/dist/src/style/theme/colors.d.ts +474 -0
  53. package/dist/src/style/theme/colors.d.ts.map +1 -0
  54. package/dist/src/style/theme/index.d.ts +3 -0
  55. package/dist/src/style/theme/index.d.ts.map +1 -0
  56. package/dist/src/style/theme/typography.d.ts +181 -0
  57. package/dist/src/style/theme/typography.d.ts.map +1 -0
  58. package/dist/src/type/Dropdown.types.d.ts +8 -0
  59. package/dist/src/type/Dropdown.types.d.ts.map +1 -0
  60. package/dist/src/type/Sidebar.types.d.ts +6 -0
  61. package/dist/src/type/Sidebar.types.d.ts.map +1 -0
  62. package/dist/src/types/button.types.d.ts +12 -0
  63. package/dist/src/types/button.types.d.ts.map +1 -0
  64. package/dist/src/types/checkBox.types.d.ts +7 -0
  65. package/dist/src/types/checkBox.types.d.ts.map +1 -0
  66. package/dist/src/types/input.types.d.ts +11 -0
  67. package/dist/src/types/input.types.d.ts.map +1 -0
  68. package/dist/tsconfig.build.tsbuildinfo +1 -0
  69. package/package.json +60 -0
  70. package/src/assets/icons/arrow-down.png +0 -0
  71. package/src/assets/icons/checked.png +0 -0
  72. package/src/assets/icons/icon_size.png +0 -0
  73. package/src/assets/images/.gitkeep +0 -0
  74. package/src/assets/index.ts +1 -0
  75. package/src/components/Button/Button.stories.tsx +145 -0
  76. package/src/components/Button/Button.tsx +27 -0
  77. package/src/components/Button/index.ts +1 -0
  78. package/src/components/Button/style.ts +132 -0
  79. package/src/components/CheckBox/CheckBox.stories.tsx +203 -0
  80. package/src/components/CheckBox/CheckBox.tsx +34 -0
  81. package/src/components/CheckBox/index.ts +1 -0
  82. package/src/components/CheckBox/style.ts +76 -0
  83. package/src/components/Dropdown/Dropdown.stories.tsx +91 -0
  84. package/src/components/Dropdown/Dropdown.tsx +56 -0
  85. package/src/components/Dropdown/index.ts +1 -0
  86. package/src/components/Dropdown/style.ts +213 -0
  87. package/src/components/Input/Input.stories.tsx +152 -0
  88. package/src/components/Input/Input.tsx +33 -0
  89. package/src/components/Input/index.ts +1 -0
  90. package/src/components/Input/style.ts +88 -0
  91. package/src/components/Sidebar/Sidebar.stories.tsx +60 -0
  92. package/src/components/Sidebar/Sidebar.tsx +67 -0
  93. package/src/components/Sidebar/index.ts +1 -0
  94. package/src/components/Sidebar/index.tsx +1 -0
  95. package/src/components/Sidebar/style.ts +109 -0
  96. package/src/components/TabBar/TabBar.stories.tsx +116 -0
  97. package/src/components/TabBar/TabBar.tsx +47 -0
  98. package/src/components/TabBar/index.ts +1 -0
  99. package/src/components/TabBar/style.ts +53 -0
  100. package/src/components/index.ts +6 -0
  101. package/src/foundation/index.ts +1 -0
  102. package/src/index.ts +2 -0
  103. package/src/style/index.ts +1 -0
  104. package/src/style/theme/colors.ts +504 -0
  105. package/src/style/theme/index.ts +2 -0
  106. package/src/style/theme/typography.ts +194 -0
  107. package/src/type/Dropdown.types.ts +7 -0
  108. package/src/type/Sidebar.types.ts +5 -0
  109. package/src/types/ krds-uiux.d.ts +12 -0
  110. package/src/types/button.types.ts +12 -0
  111. package/src/types/checkBox.types.ts +6 -0
  112. package/src/types/input.types.ts +11 -0
  113. package/src/vite-env.d.ts +1 -0
@@ -0,0 +1,53 @@
1
+ import styled from "@emotion/styled";
2
+ import { colors } from "@/style/theme";
3
+ import { typography } from "@/style/theme";
4
+
5
+ export const Wrapper = styled.div`
6
+ display: flex;
7
+ flex-direction: column;
8
+ width: 160px;
9
+ height: 100vh;
10
+ padding: 16px;
11
+ background-color: ${colors.surface.white};
12
+ gap: 16px;
13
+ `;
14
+
15
+ export const Title = styled.span`
16
+ padding: 4px 0;
17
+ margin: 0;
18
+ ${typography.heading.xxsmall}
19
+ font-family:${typography.fontFamily.primary};
20
+ color: ${colors.text.bolder};
21
+ `;
22
+
23
+ interface TabItemProps {
24
+ isSelected: boolean;
25
+ }
26
+ export const Tablist = styled.div`
27
+ display: flex;
28
+ flex-direction: column;
29
+ gap: 4px;
30
+ `;
31
+ export const TabItem = styled.div<TabItemProps>`
32
+ padding: 8px 8px;
33
+ font-family: ${typography.fontFamily.primary};
34
+ ${({ isSelected }) =>
35
+ isSelected ? typography.body.xsmallBold : typography.body.xsmall}
36
+ color: ${({ isSelected }) =>
37
+ isSelected ? colors.text.secondary : colors.text.subtle};
38
+ background-color: ${({ isSelected }) =>
39
+ isSelected ? colors.action["secondary-selected"] : "transparent"};
40
+ border-radius: 4px;
41
+ cursor: pointer;
42
+
43
+ &:hover {
44
+ background-color: ${({ isSelected }) =>
45
+ isSelected
46
+ ? colors.action["secondary-selected"]
47
+ : colors.action["secondary-hover"]};
48
+ }
49
+
50
+ &:active {
51
+ background-color: ${colors.action["secondary-pressed"]};
52
+ }
53
+ `;
@@ -0,0 +1,6 @@
1
+ export * from './Button'
2
+ export * from './CheckBox'
3
+ export * from './Dropdown'
4
+ export * from './Input'
5
+ export * from './Sidebar'
6
+ export * from './TabBar'
@@ -0,0 +1 @@
1
+ // export * from "./Avatar"; 형식으로
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from "./components";
2
+ export * from "./foundation";
@@ -0,0 +1 @@
1
+ export * from "./theme";
@@ -0,0 +1,504 @@
1
+ export const colors = {
2
+ //mode
3
+ background: {
4
+ 'white': '#FFFFFF',
5
+ 'black': '#000000',
6
+ 'gray-subtler': '#F4F5F6',
7
+ 'gray-subtle': '#E6E8EA',
8
+ 'inverse': '#1E2124',
9
+
10
+ },
11
+ surface: {
12
+ 'white': '#FFFFFF',
13
+ 'white-subtler': '#FFFFFF',
14
+ 'white-subtle': '#FFFFFF',
15
+ 'white-static': '#FFFFFF',
16
+ 'inverse' : '#1E2124',
17
+ 'inverse-static': '#1E2124',
18
+ 'gray-subtler' :'#F4F5F6',
19
+ 'gray-subtle' :'#E6E8EA',
20
+ 'disabled' : '#CDD1D5',
21
+ 'primary-subtler': '#ECF2FE',
22
+ 'secondary-subtler': '#EEF2F7',
23
+ 'point-subtler': '#FBEFF0',
24
+ 'danger-subtler': '#FDEFEC',
25
+ 'warning-subtler': '#FFF3DB',
26
+ 'success-subtler': '#EAF6EC',
27
+ 'information-subtler': '#E7F4FE'
28
+ },
29
+
30
+ border: {
31
+ 'transparency' : 'rgba(0, 0, 0, 0)',
32
+ 'inverse' : '#FFFFFF',
33
+ 'disabled' : '#B1B8BE',
34
+ 'gray-light' : '#CDD1D5',
35
+ 'gray' : '#B1B8BE',
36
+ 'gray-dark' : '#58616A',
37
+ 'gray-darker' : '#1E2124',
38
+ 'primary-light' : '#D8E5FD',
39
+ 'primary' : '#256EF4',
40
+ 'secondary-light' : '#D6E0EB',
41
+ 'secondary' : '#063A74',
42
+ 'point-light' : '#F5D6D9',
43
+ 'point' : '#D63D4A',
44
+ 'danger-light' : '#FCDFD9',
45
+ 'danger' : '#DE3412',
46
+ 'warning-light' : '#FFE0A3',
47
+ 'warning' : '#9E6A00',
48
+ 'success-light' : '#D8EEDD',
49
+ 'success' : '#228738',
50
+ 'information-light' : '#D3EBFD',
51
+ 'information' : '#0B78CB'
52
+ },
53
+
54
+ divider: {
55
+ 'gray-light' : '#CDD1D5',
56
+ 'gray' : '#8A949E',
57
+ 'gray-dark' : '#6D7882',
58
+ 'gray-darker' : '#1E2124',
59
+ 'inverse' : '#FFFFFF',
60
+ 'primary-light' : '#D8E5FD',
61
+ 'primary' : '#256EF4',
62
+ 'secondary-light' : '#D6E0EB',
63
+ 'secondary' : '#063A74',
64
+ 'error' : '#DE3412',
65
+ 'point' : '#D63D4A'
66
+ },
67
+
68
+ text: {
69
+ 'bolder' : '#131416',
70
+ 'basic' : '#1E2124',
71
+ 'subtle' : '#464C53',
72
+ 'disabled' : '#8A949E',
73
+ 'disabled-on' : '#6D7882',
74
+ 'border-inverse' : '#FFFFFF',
75
+ 'basic-inverse' : '#FFFFFF',
76
+ 'subtle-inverse' : '#B1B8BE',
77
+ 'static' : '#1E2124',
78
+ 'inverse-static' : '#FFFFFF',
79
+ 'primary' : '#0B50D0',
80
+ 'secondary' : '#052B57',
81
+ 'point' : '#AB2B36',
82
+ 'danger' : '#BD2C0F',
83
+ 'warning' : '#8A5C00',
84
+ 'success' : '#267337',
85
+ 'information' : '#096AB3'
86
+ },
87
+
88
+ action: {
89
+ 'white' : '#FFFFFF',
90
+ 'primary' : 'rgba(255, 255, 255, 0)',
91
+ 'primary-hover' : '#ECF2FE',
92
+ 'primary-pressed' : '#D8E5FD',
93
+ 'primary-selected' : '#ECF2FE',
94
+ 'primary-active' : '#256EF4',
95
+ 'secondary' : 'rgba(255, 255, 255, 0)',
96
+ 'secondary-hover' : '#EEF2F7',
97
+ 'secondary-pressed' : '#D6E0EB',
98
+ 'secondary-selected' : '#EEF2F7',
99
+ 'secondary-on' : '#rgba(255, 255, 255, 0)',
100
+ 'secondary-on-hover' : '#FFFFFF',
101
+ 'secondary-on-pressed' : '#D6E0EB',
102
+ 'secondary-on-selected' : '#FFFFFF',
103
+ 'secondary-active' : '#063A74',
104
+ 'disabled' : '#CDD1D5'
105
+ },
106
+
107
+ element: {
108
+ 'inverse': '#FFFFFF',
109
+ 'inverse-static': '#FFFFFF',
110
+ 'gray-lighter': '#',
111
+ 'gray-light': '#E6E8EA',
112
+ 'gray': '#6D7882',
113
+ 'gray-dark': '#58616A',
114
+ 'disabled-light': '#CDD1D5',
115
+ 'disabled-dark': '#8A949E',
116
+ 'primary-light': '#D8E5FD',
117
+ 'primary-lighter': '#ECF2FE',
118
+ 'primary': '#256EF4',
119
+ 'secondary-light': '#D6E0EB',
120
+ 'secondary-lighter': '#EEF2F7',
121
+ 'secondary': '#063A74',
122
+ 'point-light': '#F5D6D9',
123
+ 'point-lighter': '#FBEFF0',
124
+ 'point': '#D63D4A',
125
+ 'danger': '#DE3412',
126
+ 'danger-lighter': '#FDEFEC',
127
+ 'warning': '#FFB114',
128
+ 'warning-lighter': '#FFF3DB',
129
+ 'success': '#228738',
130
+ 'success-lighter': '#EAF6EC',
131
+ 'information': '#0B78CB',
132
+ 'information-lighter': '#E7F4FE',
133
+ 'logo-text' : '#575756'
134
+ },
135
+
136
+ icon: {
137
+ 'gray': '#33363D',
138
+ 'gary-light': '#464C53',
139
+ 'gray-fill': '#CDD1D5',
140
+ 'inverse': '#FFFFFF',
141
+ 'disabled': '#8A949E',
142
+ 'disabled-on': '#6D7882',
143
+ 'primary': '#256EF4',
144
+ 'secondary': '#052B57',
145
+ 'point': '#D63D4A',
146
+ 'danger': '#DE3412',
147
+ 'warning': '#9E6A00',
148
+ 'success': '#228738',
149
+ 'information': '#0B78CB',
150
+ 'inverse-static': '#FFFFFF',
151
+ 'primary-static': '#256EF4',
152
+ 'secondary-static': '#052B57',
153
+ 'point-static': '#D63D4A',
154
+ 'danger-static': '#DE3412',
155
+ 'warning-static': '#9E6A00',
156
+ 'success-static': '#228738',
157
+ 'information-static': '#0B78CB'
158
+ },
159
+
160
+ link: {
161
+ 'default': '#0B78CB',
162
+ 'hover': '#0B50D0',
163
+ 'pressed': '#083891',
164
+ 'visited': '#5917B8'
165
+ },
166
+
167
+ button: {
168
+ 'primary-fill': '#256EF4',
169
+ 'primary-fill-hover': '#0B50D0',
170
+ 'primary-fill-pressed': '#083891',
171
+ 'secondary-fill': '#ECF2FE',
172
+ 'secondary-fill-hover': '#D8E5FD',
173
+ 'secondary-fill-pressed': '#B1CEFB',
174
+ 'secondary-border': '#256EF4',
175
+ 'tertiary-fill': 'rgba(255, 255, 255, 0)',
176
+ 'tertiary-fill-hover': '#F4F5F6',
177
+ 'tertiary-fill-pressed': '#E6E8EA',
178
+ 'tertiary-border': '#58616A',
179
+ 'text-fill': 'rgba(255, 255, 255, 0)',
180
+ 'text-fill-hover': '#EEF2F7',
181
+ 'text-fill-pressed': '#D6E0EB',
182
+ 'text-border': 'rgba(0, 0, 0, 0)',
183
+ 'disabled-fill': '#CDD1D5',
184
+ 'disabled-border': '#B1B8BE'
185
+ },
186
+
187
+ input: {
188
+ 'surface': '#FFFFFF',
189
+ 'border': '#58616A',
190
+ 'border-active': '#256EF4',
191
+ 'border-error': '#DE3412',
192
+ 'surface-disabled': '#CDD1D5',
193
+ 'border-disabled': '#B1B8BE',
194
+ },
195
+
196
+ graphic: {
197
+ 'blue-subtler': '#E5ECF9',
198
+ 'blue-subtle': '#98ACC5',
199
+ 'blue': '#61758F',
200
+ 'blue-dark': '#39506C',
201
+ 'blue-darker': '#223A58',
202
+ 'red-subtler': '#FBEFF0',
203
+ 'red-subtle': '#F5D6D9',
204
+ 'red': '#EBADB2',
205
+ 'red-dark': '#D65C66',
206
+ 'red-darker': '#7A1F26',
207
+ 'brand': '#256EF4'
208
+ },
209
+
210
+ alpha: {
211
+ 'base100': 'rgba(255, 255, 255, 1)',
212
+ 'base75': 'rgba(255, 255, 255, 0.75)',
213
+ 'base50': 'rgba(255, 255, 255, 0.50)',
214
+ 'base25': 'rgba(255, 255, 255, 0.25)',
215
+ 'base10': 'rgba(255, 255, 255, 0.1)',
216
+ 'base0': 'rgba(255, 255, 255, 0)',
217
+ 'inverse100': 'rgba(0, 0, 0, 1)',
218
+ 'inverse75': 'rgba(0, 0, 0, 0.75)',
219
+ 'inverse50': 'rgba(0, 0, 0, 0.5)',
220
+ 'inverse25': 'rgba(0, 0, 0, 0.25)',
221
+ 'inverse10': 'rgba(0, 0, 0, 0.1)',
222
+ 'inverse0': 'rgba(0, 0, 0, 0)',
223
+ 'shadow0': 'rgba(0, 0, 0, 0)',
224
+ 'shadow1': 'rgba(0, 0, 0, 0.05)',
225
+ 'shadow2': 'rgba(0, 0, 0, 0.08)',
226
+ 'shadow3': 'rgba(0, 0, 0, 0.12)',
227
+ },
228
+ //primitive
229
+ light: {
230
+ gray: {
231
+ '100': '#000000',
232
+ '95': '#131416',
233
+ '90': '#1E2124',
234
+ '80': '#33363D',
235
+ '70': '#464C53',
236
+ '60': '#58616A',
237
+ '50': '#6D7882',
238
+ '40': '#8A949E',
239
+ '30': '#B1B8BE',
240
+ '20': '#CDD1D5',
241
+ '10': '#E6E8EA',
242
+ '5': '#F4F5F6',
243
+ '0': '#FFFFFF',
244
+ },
245
+
246
+ primary: {
247
+ '95': '#020F27',
248
+ '90': '#03163A',
249
+ '80': '#052561',
250
+ '70': '#083891',
251
+ '60': '#0B50D0',
252
+ '50': '#256EF4',
253
+ '40': '#4C87F6',
254
+ '30': '#86AFF9',
255
+ '20': '#B1CEFB',
256
+ '10': '#D8E5FD',
257
+ '5': '#ECF2FE',
258
+ },
259
+
260
+ secondary: {
261
+ '95': '#02162C',
262
+ '90': '#031F3F',
263
+ '80': '#052B57',
264
+ '70': '#063A74',
265
+ '60': '#1C589C',
266
+ '50': '#346FB2',
267
+ '40': '#6B96C7',
268
+ '30': '#90B0D5',
269
+ '20': '#BACBDE',
270
+ '10': '#D6E0EB',
271
+ '5': '#EEF2F7',
272
+ },
273
+
274
+ point: {
275
+ '95': '#21080A',
276
+ '90': '#310C0F',
277
+ '80': '#521419',
278
+ '70': '#7A1F26',
279
+ '60': '#AB2B36',
280
+ '50': '#D63D4A',
281
+ '40': '#D65C66',
282
+ '30': '#E0858C',
283
+ '20': '#EBADB2',
284
+ '10': '#F5D6D9',
285
+ '5': '#FBEFF0'
286
+ },
287
+
288
+ danger: {
289
+ '95': '#260903',
290
+ '90': '#390D05',
291
+ '80': '#5C180A',
292
+ '70': '#8A240F',
293
+ '60': '#BD2C0F',
294
+ '50': '#DE3412',
295
+ '40': '#F05F42',
296
+ '30': '#F48771',
297
+ '20': '#F7AFA1',
298
+ '10': '#FCDFD9',
299
+ '5': '#FDEFEC',
300
+ },
301
+
302
+ warning: {
303
+ '95': '#241800',
304
+ '90': '#2E1F00',
305
+ '80': '#422C00',
306
+ '70': '#614100',
307
+ '60': '#8A5C00',
308
+ '50': '#9E6A00',
309
+ '40': '#C78500',
310
+ '30': '#FFB114',
311
+ '20': '#FFC95C',
312
+ '10': '#FFE0A3',
313
+ '5': '#FFF3DB'
314
+ },
315
+
316
+ success: {
317
+ '95': '#0E2012',
318
+ '90': '#122B18',
319
+ '80': '#1F4727',
320
+ '70': '#285D33',
321
+ '60': '#267337',
322
+ '50': '#228738',
323
+ '40': '#3FA654',
324
+ '30': '#7EC88E',
325
+ '20': '#A9DAB4',
326
+ '10': '#D8EEDD',
327
+ '5': '#EAF6EC',
328
+ },
329
+
330
+ information: {
331
+ '95': '#021A2C',
332
+ '90': '#03253F',
333
+ '80': '#053961',
334
+ '70': '#085691',
335
+ '60': '#096AB3',
336
+ '50': '#0B78CB',
337
+ '40': '#2098F3',
338
+ '30': '#5FB5F7',
339
+ '20': '#9ED2FA',
340
+ '10': '#D3EBFD',
341
+ '5': '#E7F4FE'
342
+ },
343
+
344
+ alpha: {
345
+ 'black100': 'rgba(0, 0, 0, 1)',
346
+ 'black75': 'rgba(0, 0, 0, 0.75)',
347
+ 'black50': 'rgba(0, 0, 0, 0.5)',
348
+ 'black25': 'rgba(0, 0, 0, 0.25)',
349
+ 'black10': 'rgba(0, 0, 0, 0.1)',
350
+ 'black0': 'rgba(0, 0, 0, 0)',
351
+ 'white100': 'rgba(0, 0, 0, 1)',
352
+ 'white75': 'rgba(0, 0, 0, 0.75)',
353
+ 'white50': 'rgba(0, 0, 0, 0.50)',
354
+ 'white25': 'rgba(0, 0, 0, 0.25)',
355
+ 'white10': 'rgba(0, 0, 0, 0.1)',
356
+ 'white0': 'rgba(0, 0, 0, 0)',
357
+ },
358
+
359
+ graphic: {
360
+ '90': '#223A58',
361
+ '70': '#39506C',
362
+ '50': '#61758F',
363
+ '30': '#98ACC5',
364
+ '10': '#E5ECF9'
365
+ },
366
+ },
367
+
368
+ highContrast:{
369
+ gray: {
370
+ '100': '#000000',
371
+ '95': '#131416',
372
+ '90': '#1E2124',
373
+ '80': '#33363D',
374
+ '70': '#464C53',
375
+ '60': '#58616A',
376
+ '50': '#6D7882',
377
+ '40': '#8A949E',
378
+ '30': '#B1B8BE',
379
+ '20': '#CDD1D5',
380
+ '10': '#E6E8EA',
381
+ '5': '#F4F5F6',
382
+ '0': '#FFFFFF',
383
+ },
384
+
385
+ primary: {
386
+ '95': '#020F27',
387
+ '90': '#03163A',
388
+ '80': '#052561',
389
+ '70': '#083891',
390
+ '60': '#0B50D0',
391
+ '50': '#256EF4',
392
+ '40': '#4C87F6',
393
+ '30': '#86AFF9',
394
+ '20': '#B1CEFB',
395
+ '10': '#D8E5FD',
396
+ '5': '#ECF2FE',
397
+ },
398
+
399
+ secondary: {
400
+ '95': '#091F25',
401
+ '90': '#0E3139',
402
+ '80': '#113B45',
403
+ '70': '#17505E',
404
+ '60': '#1F687A',
405
+ '50': '#268097',
406
+ '40': '#3D9FB8',
407
+ '30': '#75C0D1',
408
+ '20': '#ABD8E3',
409
+ '10': '#D5EBF1',
410
+ '5': '#EDF6F8'
411
+ },
412
+ point: {
413
+ '95': '#21080A',
414
+ '90': '#310C0F',
415
+ '80': '#521419',
416
+ '70': '#7A1F26',
417
+ '60': '#AB2B36',
418
+ '50': '#D63D4A',
419
+ '40': '#D65C66',
420
+ '30': '#E0858C',
421
+ '20': '#EBADB2',
422
+ '10': '#F5D6D9',
423
+ '5': '#FBEFF0'
424
+ },
425
+ danger: {
426
+ '95': '#260903',
427
+ '90': '#390D05',
428
+ '80': '#5C180A',
429
+ '70': '#8A240F',
430
+ '60': '#BD2C0F',
431
+ '50': '#DE3412',
432
+ '40': '#F05F42',
433
+ '30': '#F48771',
434
+ '20': '#F7AFA1',
435
+ '10': '#FCDFD9',
436
+ '5': '#FDEFEC',
437
+ },
438
+
439
+ warning: {
440
+ '95': '#241800',
441
+ '90': '#2E1F00',
442
+ '80': '#422C00',
443
+ '70': '#614100',
444
+ '60': '#8A5C00',
445
+ '50': '#9E6A00',
446
+ '40': '#C78500',
447
+ '30': '#FFB114',
448
+ '20': '#FFC95C',
449
+ '10': '#FFE0A3',
450
+ '5': '#FFF3DB'
451
+ },
452
+
453
+ success: {
454
+ '95': '#0E2012',
455
+ '90': '#122B18',
456
+ '80': '#1F4727',
457
+ '70': '#285D33',
458
+ '60': '#267337',
459
+ '50': '#228738',
460
+ '40': '#3FA654',
461
+ '30': '#7EC88E',
462
+ '20': '#A9DAB4',
463
+ '10': '#D8EEDD',
464
+ '5': '#EAF6EC',
465
+ },
466
+
467
+ information: {
468
+ '95': '#021A2C',
469
+ '90': '#03253F',
470
+ '80': '#053961',
471
+ '70': '#085691',
472
+ '60': '#096AB3',
473
+ '50': '#0B78CB',
474
+ '40': '#2098F3',
475
+ '30': '#5FB5F7',
476
+ '20': '#9ED2FA',
477
+ '10': '#D3EBFD',
478
+ '5': '#E7F4FE'
479
+ },
480
+
481
+ alpha: {
482
+ 'black100': 'rgba(0, 0, 0, 1)',
483
+ 'black75': 'rgba(0, 0, 0, 0.75)',
484
+ 'black50': 'rgba(0, 0, 0, 0.5)',
485
+ 'black25': 'rgba(0, 0, 0, 0.25)',
486
+ 'black10': 'rgba(0, 0, 0, 0.1)',
487
+ 'black0': 'rgba(0, 0, 0, 0)',
488
+ 'white100': 'rgba(0, 0, 0, 1)',
489
+ 'white75': 'rgba(0, 0, 0, 0.75)',
490
+ 'white50': 'rgba(0, 0, 0, 0.50)',
491
+ 'white25': 'rgba(0, 0, 0, 0.25)',
492
+ 'white10': 'rgba(0, 0, 0, 0.1)',
493
+ 'white0': 'rgba(0, 0, 0, 0)',
494
+ },
495
+
496
+ graphic: {
497
+ '90': '#223A58',
498
+ '70': '#39506C',
499
+ '50': '#61758F',
500
+ '30': '#98ACC5',
501
+ '10': '#E5ECF9'
502
+ },
503
+ },
504
+ };
@@ -0,0 +1,2 @@
1
+ export { colors } from './colors';
2
+ export { typography } from './typography';