@teamturing/token-studio 1.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 (54) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1 -0
  3. package/dist/foundation/breakpoint/device.d.ts +6 -0
  4. package/dist/foundation/breakpoint/index.d.ts +8 -0
  5. package/dist/foundation/gradient/colorStopList/index.d.ts +7 -0
  6. package/dist/foundation/gradient/direction/index.d.ts +7 -0
  7. package/dist/foundation/gradient/index.d.ts +14 -0
  8. package/dist/foundation/opacity/index.d.ts +4 -0
  9. package/dist/foundation/palette/index.d.ts +148 -0
  10. package/dist/foundation/rounding/index.d.ts +12 -0
  11. package/dist/foundation/shadow/index.d.ts +4 -0
  12. package/dist/foundation/spacing/index.d.ts +29 -0
  13. package/dist/foundation/typography/fontSize/index.d.ts +17 -0
  14. package/dist/foundation/typography/fontWeight/index.d.ts +12 -0
  15. package/dist/foundation/typography/index.d.ts +32 -0
  16. package/dist/foundation/typography/lineHeight/index.d.ts +5 -0
  17. package/dist/index.d.ts +1 -0
  18. package/dist/index.js +651 -0
  19. package/dist/token/breakpoints/index.d.ts +4 -0
  20. package/dist/token/color/index.d.ts +253 -0
  21. package/dist/token/elevation/index.d.ts +18 -0
  22. package/dist/token/gradient/index.d.ts +44 -0
  23. package/dist/token/index.d.ts +15 -0
  24. package/dist/token/opacity/index.d.ts +11 -0
  25. package/dist/token/radii/index.d.ts +13 -0
  26. package/dist/token/space/index.d.ts +53 -0
  27. package/dist/token/typography/fontSizes.d.ts +15 -0
  28. package/dist/token/typography/fontWeights.d.ts +7 -0
  29. package/dist/token/typography/index.d.ts +134 -0
  30. package/dist/token/typography/lineHeights.d.ts +6 -0
  31. package/esm/foundation/breakpoint/device.js +7 -0
  32. package/esm/foundation/gradient/colorStopList/index.js +8 -0
  33. package/esm/foundation/gradient/direction/index.js +8 -0
  34. package/esm/foundation/opacity/index.js +5 -0
  35. package/esm/foundation/palette/index.js +90 -0
  36. package/esm/foundation/rounding/index.js +13 -0
  37. package/esm/foundation/shadow/index.js +5 -0
  38. package/esm/foundation/spacing/index.js +56 -0
  39. package/esm/foundation/typography/fontSize/index.js +18 -0
  40. package/esm/foundation/typography/fontWeight/index.js +13 -0
  41. package/esm/foundation/typography/lineHeight/index.js +6 -0
  42. package/esm/index.js +11 -0
  43. package/esm/token/breakpoints/index.js +6 -0
  44. package/esm/token/color/index.js +140 -0
  45. package/esm/token/elevation/index.js +16 -0
  46. package/esm/token/gradient/index.js +33 -0
  47. package/esm/token/opacity/index.js +10 -0
  48. package/esm/token/radii/index.js +15 -0
  49. package/esm/token/space/index.js +55 -0
  50. package/esm/token/typography/fontSizes.js +17 -0
  51. package/esm/token/typography/fontWeights.js +9 -0
  52. package/esm/token/typography/index.js +133 -0
  53. package/esm/token/typography/lineHeights.js +8 -0
  54. package/package.json +32 -0
@@ -0,0 +1,253 @@
1
+ declare const textColor: {
2
+ readonly 'text/primary': "#835EEB";
3
+ readonly 'text/accent/blue': "#4880ee";
4
+ readonly 'text/accent/green': "#1FCCA1";
5
+ readonly 'text/accent/yellow': "#FFC107";
6
+ readonly 'text/accent/red': "#F22735";
7
+ readonly 'text/neutral/subtlest': "#8D94A0";
8
+ readonly 'text/neutral/subtler': "#7A828D";
9
+ readonly 'text/neutral/subtle': "#575C64";
10
+ readonly 'text/neutral': "#33373B";
11
+ readonly 'text/inverse': "#FFFFFF";
12
+ readonly 'text/inverse/subtle': "#E5E7EB";
13
+ readonly 'text/inverse/subtler': "#D1D5DB";
14
+ readonly 'text/disabled': "#8D94A0";
15
+ readonly 'text/success': "#1FCCA1";
16
+ readonly 'text/warning': "#FFC107";
17
+ readonly 'text/danger': "#F22735";
18
+ readonly 'text/selected/neutral': "#33373B";
19
+ };
20
+ declare const bgColor: {
21
+ readonly 'bg/secondary': "#F3EFFD";
22
+ readonly 'bg/secondary/hovered': "#D9CDF9";
23
+ readonly 'bg/secondary/pressed': "#D9CDF9";
24
+ readonly 'bg/primary': "#835EEB";
25
+ readonly 'bg/primary/hovered': "#5D43A7";
26
+ readonly 'bg/primary/pressed': "#5D43A7";
27
+ readonly 'bg/neutral/subtler': "#FFFFFF00";
28
+ readonly 'bg/neutral/subtler/hovered': "#F3F4F6";
29
+ readonly 'bg/neutral/subtler/pressed': "#F3F4F6";
30
+ readonly 'bg/neutral/subtle': "#F9FAFB";
31
+ readonly 'bg/neutral/subtle/hovered': "#E5E7EB";
32
+ readonly 'bg/neutral/subtle/pressed': "#E5E7EB";
33
+ readonly 'bg/neutral': "#F3F4F6";
34
+ readonly 'bg/neutral/hovered': "#D1D5DB";
35
+ readonly 'bg/neutral/pressed': "#D1D5DB";
36
+ readonly 'bg/neutral/bold': "#575C64";
37
+ readonly 'bg/neutral/bold/hovered': "#33373B";
38
+ readonly 'bg/neutral/bold/pressed': "#33373B";
39
+ readonly 'bg/neutral/bolder': "#33373B";
40
+ readonly 'bg/neutral/bolder/hovered': "#000000";
41
+ readonly 'bg/neutral/bolder/pressed': "#000000";
42
+ readonly 'bg/disabled': "#F3F4F6";
43
+ readonly 'bg/disabled/subtlest': "#FFFFFF00";
44
+ readonly 'bg/input': "#FFFFFF";
45
+ readonly 'bg/accent/green/subtlest': "#E9FAF6";
46
+ readonly 'bg/accent/yellow/subtlest': "#FFF9E6";
47
+ readonly 'bg/accent/red/subtlest': "#FEE9EB";
48
+ readonly 'bg/accent/red/subtle': "#F5525D";
49
+ readonly 'bg/accent/red': "#F22735";
50
+ readonly 'bg/accent/gray/subtlest': "#E5E7EB";
51
+ readonly 'bg/accent/blue/subtlest': "#edf2fd";
52
+ readonly 'bg/selected/violet': "#835EEB";
53
+ readonly 'bg/selected/neutral': "#33373B";
54
+ readonly 'bg/selected/neutral/subtle': "#F3F4F6";
55
+ readonly 'bg/inverse': "#000000";
56
+ readonly 'bg/inverse/subtlest': "#FFFFFF1A";
57
+ readonly 'bg/success': "#E9FAF6";
58
+ readonly 'bg/success/bold': "#1FCCA1";
59
+ readonly 'bg/warning': "#FFF9E6";
60
+ readonly 'bg/warning/bold': "#FFC107";
61
+ readonly 'bg/danger': "#FEE9EB";
62
+ readonly 'bg/danger/bold': "#F5525D";
63
+ readonly 'bg/danger/bold/hovered': "#DC2330";
64
+ readonly 'bg/danger/bold/pressed': "#DC2330";
65
+ };
66
+ declare const borderColor: {
67
+ readonly 'border/neutral/subtle': "#F3F4F6";
68
+ readonly 'border/neutral': "#E5E7EB";
69
+ readonly 'border/neutral/bolder': "#D1D5DB";
70
+ readonly 'border/input': "#E5E7EB";
71
+ readonly 'border/inverse': "#FFFFFF1A";
72
+ readonly 'border/disabled': "#F3F4F6";
73
+ readonly 'border/primary': "#835EEB";
74
+ readonly 'border/hovered': "#84aaf4";
75
+ readonly 'border/focused': "#4880ee";
76
+ readonly 'border/danger': "#F22735";
77
+ readonly 'border/success': "#1FCCA1";
78
+ };
79
+ declare const iconColor: {
80
+ readonly 'icon/neutral': "#D1D5DB";
81
+ readonly 'icon/neutral/bold': "#8D94A0";
82
+ readonly 'icon/neutral/bolder': "#575C64";
83
+ readonly 'icon/accent/gray': "#33373B";
84
+ readonly 'icon/accent/blue': "#4880ee";
85
+ readonly 'icon/accent/blue/bold': "#335ba9";
86
+ readonly 'icon/accent/green': "#1FCCA1";
87
+ readonly 'icon/accent/yellow': "#FFC107";
88
+ readonly 'icon/accent/red': "#F22735";
89
+ readonly 'icon/inverse': "#FFFFFF";
90
+ readonly 'icon/disabled': "#D1D5DB";
91
+ readonly 'icon/disabled/subtler': "#E5E7EB";
92
+ readonly 'icon/selected/primary': "#835EEB";
93
+ readonly 'icon/selected/neutral': "#33373B";
94
+ readonly 'icon/primary': "#835EEB";
95
+ readonly 'icon/primary/subtle': "#C6B5F6";
96
+ readonly 'icon/primary/bold': "#5D43A7";
97
+ readonly 'icon/success': "#1FCCA1";
98
+ readonly 'icon/warning': "#FFC107";
99
+ readonly 'icon/danger': "#F22735";
100
+ };
101
+ declare const linkColor: {
102
+ readonly link: "#4880ee";
103
+ readonly 'link/hovered': "#335ba9";
104
+ readonly 'link/pressed': "#335ba9";
105
+ readonly 'link/neutral': "#7A828D";
106
+ readonly 'link/neutral/hovered': "#575C64";
107
+ readonly 'link/neutral/pressed': "#575C64";
108
+ readonly 'link/neutral/bold': "#575C64";
109
+ readonly 'link/neutral/bold/hovered': "#33373B";
110
+ readonly 'link/neutral/bold/pressed': "#33373B";
111
+ readonly 'link/disabled': "#575C64";
112
+ };
113
+ declare const dimColor: {
114
+ readonly dim: "#00000099";
115
+ };
116
+ declare const scaleColor: {
117
+ 'scale/violet/0': "#F3EFFD";
118
+ 'scale/violet/1': "#E8E1FB";
119
+ 'scale/violet/2': "#D9CDF9";
120
+ 'scale/violet/3': "#C6B5F6";
121
+ 'scale/violet/4': "#9C7EEF";
122
+ 'scale/violet/5': "#835EEB";
123
+ 'scale/violet/6': "#7756D6";
124
+ 'scale/violet/7': "#5D43A7";
125
+ 'scale/violet/8': "#483481";
126
+ 'scale/violet/9': "#372763";
127
+ };
128
+ declare const color: {
129
+ readonly 'scale/violet/0': "#F3EFFD";
130
+ readonly 'scale/violet/1': "#E8E1FB";
131
+ readonly 'scale/violet/2': "#D9CDF9";
132
+ readonly 'scale/violet/3': "#C6B5F6";
133
+ readonly 'scale/violet/4': "#9C7EEF";
134
+ readonly 'scale/violet/5': "#835EEB";
135
+ readonly 'scale/violet/6': "#7756D6";
136
+ readonly 'scale/violet/7': "#5D43A7";
137
+ readonly 'scale/violet/8': "#483481";
138
+ readonly 'scale/violet/9': "#372763";
139
+ readonly dim: "#00000099";
140
+ readonly link: "#4880ee";
141
+ readonly 'link/hovered': "#335ba9";
142
+ readonly 'link/pressed': "#335ba9";
143
+ readonly 'link/neutral': "#7A828D";
144
+ readonly 'link/neutral/hovered': "#575C64";
145
+ readonly 'link/neutral/pressed': "#575C64";
146
+ readonly 'link/neutral/bold': "#575C64";
147
+ readonly 'link/neutral/bold/hovered': "#33373B";
148
+ readonly 'link/neutral/bold/pressed': "#33373B";
149
+ readonly 'link/disabled': "#575C64";
150
+ readonly 'icon/neutral': "#D1D5DB";
151
+ readonly 'icon/neutral/bold': "#8D94A0";
152
+ readonly 'icon/neutral/bolder': "#575C64";
153
+ readonly 'icon/accent/gray': "#33373B";
154
+ readonly 'icon/accent/blue': "#4880ee";
155
+ readonly 'icon/accent/blue/bold': "#335ba9";
156
+ readonly 'icon/accent/green': "#1FCCA1";
157
+ readonly 'icon/accent/yellow': "#FFC107";
158
+ readonly 'icon/accent/red': "#F22735";
159
+ readonly 'icon/inverse': "#FFFFFF";
160
+ readonly 'icon/disabled': "#D1D5DB";
161
+ readonly 'icon/disabled/subtler': "#E5E7EB";
162
+ readonly 'icon/selected/primary': "#835EEB";
163
+ readonly 'icon/selected/neutral': "#33373B";
164
+ readonly 'icon/primary': "#835EEB";
165
+ readonly 'icon/primary/subtle': "#C6B5F6";
166
+ readonly 'icon/primary/bold': "#5D43A7";
167
+ readonly 'icon/success': "#1FCCA1";
168
+ readonly 'icon/warning': "#FFC107";
169
+ readonly 'icon/danger': "#F22735";
170
+ readonly 'border/neutral/subtle': "#F3F4F6";
171
+ readonly 'border/neutral': "#E5E7EB";
172
+ readonly 'border/neutral/bolder': "#D1D5DB";
173
+ readonly 'border/input': "#E5E7EB";
174
+ readonly 'border/inverse': "#FFFFFF1A";
175
+ readonly 'border/disabled': "#F3F4F6";
176
+ readonly 'border/primary': "#835EEB";
177
+ readonly 'border/hovered': "#84aaf4";
178
+ readonly 'border/focused': "#4880ee";
179
+ readonly 'border/danger': "#F22735";
180
+ readonly 'border/success': "#1FCCA1";
181
+ readonly 'bg/secondary': "#F3EFFD";
182
+ readonly 'bg/secondary/hovered': "#D9CDF9";
183
+ readonly 'bg/secondary/pressed': "#D9CDF9";
184
+ readonly 'bg/primary': "#835EEB";
185
+ readonly 'bg/primary/hovered': "#5D43A7";
186
+ readonly 'bg/primary/pressed': "#5D43A7";
187
+ readonly 'bg/neutral/subtler': "#FFFFFF00";
188
+ readonly 'bg/neutral/subtler/hovered': "#F3F4F6";
189
+ readonly 'bg/neutral/subtler/pressed': "#F3F4F6";
190
+ readonly 'bg/neutral/subtle': "#F9FAFB";
191
+ readonly 'bg/neutral/subtle/hovered': "#E5E7EB";
192
+ readonly 'bg/neutral/subtle/pressed': "#E5E7EB";
193
+ readonly 'bg/neutral': "#F3F4F6";
194
+ readonly 'bg/neutral/hovered': "#D1D5DB";
195
+ readonly 'bg/neutral/pressed': "#D1D5DB";
196
+ readonly 'bg/neutral/bold': "#575C64";
197
+ readonly 'bg/neutral/bold/hovered': "#33373B";
198
+ readonly 'bg/neutral/bold/pressed': "#33373B";
199
+ readonly 'bg/neutral/bolder': "#33373B";
200
+ readonly 'bg/neutral/bolder/hovered': "#000000";
201
+ readonly 'bg/neutral/bolder/pressed': "#000000";
202
+ readonly 'bg/disabled': "#F3F4F6";
203
+ readonly 'bg/disabled/subtlest': "#FFFFFF00";
204
+ readonly 'bg/input': "#FFFFFF";
205
+ readonly 'bg/accent/green/subtlest': "#E9FAF6";
206
+ readonly 'bg/accent/yellow/subtlest': "#FFF9E6";
207
+ readonly 'bg/accent/red/subtlest': "#FEE9EB";
208
+ readonly 'bg/accent/red/subtle': "#F5525D";
209
+ readonly 'bg/accent/red': "#F22735";
210
+ readonly 'bg/accent/gray/subtlest': "#E5E7EB";
211
+ readonly 'bg/accent/blue/subtlest': "#edf2fd";
212
+ readonly 'bg/selected/violet': "#835EEB";
213
+ readonly 'bg/selected/neutral': "#33373B";
214
+ readonly 'bg/selected/neutral/subtle': "#F3F4F6";
215
+ readonly 'bg/inverse': "#000000";
216
+ readonly 'bg/inverse/subtlest': "#FFFFFF1A";
217
+ readonly 'bg/success': "#E9FAF6";
218
+ readonly 'bg/success/bold': "#1FCCA1";
219
+ readonly 'bg/warning': "#FFF9E6";
220
+ readonly 'bg/warning/bold': "#FFC107";
221
+ readonly 'bg/danger': "#FEE9EB";
222
+ readonly 'bg/danger/bold': "#F5525D";
223
+ readonly 'bg/danger/bold/hovered': "#DC2330";
224
+ readonly 'bg/danger/bold/pressed': "#DC2330";
225
+ readonly 'text/primary': "#835EEB";
226
+ readonly 'text/accent/blue': "#4880ee";
227
+ readonly 'text/accent/green': "#1FCCA1";
228
+ readonly 'text/accent/yellow': "#FFC107";
229
+ readonly 'text/accent/red': "#F22735";
230
+ readonly 'text/neutral/subtlest': "#8D94A0";
231
+ readonly 'text/neutral/subtler': "#7A828D";
232
+ readonly 'text/neutral/subtle': "#575C64";
233
+ readonly 'text/neutral': "#33373B";
234
+ readonly 'text/inverse': "#FFFFFF";
235
+ readonly 'text/inverse/subtle': "#E5E7EB";
236
+ readonly 'text/inverse/subtler': "#D1D5DB";
237
+ readonly 'text/disabled': "#8D94A0";
238
+ readonly 'text/success': "#1FCCA1";
239
+ readonly 'text/warning': "#FFC107";
240
+ readonly 'text/danger': "#F22735";
241
+ readonly 'text/selected/neutral': "#33373B";
242
+ };
243
+ type TextColorKey = keyof typeof textColor;
244
+ type BgColorKey = keyof typeof bgColor;
245
+ type BorderColorKey = keyof typeof borderColor;
246
+ type IconColorKey = keyof typeof iconColor;
247
+ type LinkColorKey = keyof typeof linkColor;
248
+ type DimColorKey = keyof typeof dimColor;
249
+ type ScaleColorKey = keyof typeof scaleColor;
250
+ type ColorKey = keyof typeof color;
251
+ export default color;
252
+ export { textColor, bgColor, borderColor, iconColor, linkColor, dimColor, scaleColor };
253
+ export type { ColorKey, TextColorKey, BgColorKey, BorderColorKey, IconColorKey, LinkColorKey, DimColorKey, ScaleColorKey, };
@@ -0,0 +1,18 @@
1
+ declare const surfaceElevation: {
2
+ readonly surface: "#FFFFFF";
3
+ readonly 'surface/overlay': "#FFFFFF";
4
+ };
5
+ declare const shadowElevation: {
6
+ readonly 'shadow/overlay': string;
7
+ };
8
+ declare const elevation: {
9
+ readonly 'shadow/overlay': string;
10
+ readonly surface: "#FFFFFF";
11
+ readonly 'surface/overlay': "#FFFFFF";
12
+ };
13
+ type SurfaceElevationKey = keyof typeof surfaceElevation;
14
+ type ShadowElevationKey = keyof typeof shadowElevation;
15
+ type ElevationKey = keyof typeof elevation;
16
+ export default elevation;
17
+ export { surfaceElevation, shadowElevation };
18
+ export type { SurfaceElevationKey, ShadowElevationKey, ElevationKey };
@@ -0,0 +1,44 @@
1
+ declare const textGradient: {
2
+ readonly 'text/accent': string;
3
+ };
4
+ declare const bgGradient: {
5
+ readonly 'bg/accent/violet': string;
6
+ readonly 'bg/accent/neutral': string;
7
+ };
8
+ declare const borderGradient: {
9
+ readonly 'border/accent/violet': string;
10
+ };
11
+ declare const overlayGradient: {
12
+ readonly 'overlay/subtlest/toright': string;
13
+ readonly 'overlay/subtlest/toleft': string;
14
+ readonly 'overlay/subtlest/totop': string;
15
+ readonly 'overlay/floating/toright': string;
16
+ readonly 'overlay/floating/toleft': string;
17
+ readonly 'overlay/floating/totop': string;
18
+ readonly 'overlay/bold/toright': string;
19
+ readonly 'overlay/bold/toleft': string;
20
+ readonly 'overlay/bold/totop': string;
21
+ };
22
+ declare const gradient: {
23
+ readonly 'overlay/subtlest/toright': string;
24
+ readonly 'overlay/subtlest/toleft': string;
25
+ readonly 'overlay/subtlest/totop': string;
26
+ readonly 'overlay/floating/toright': string;
27
+ readonly 'overlay/floating/toleft': string;
28
+ readonly 'overlay/floating/totop': string;
29
+ readonly 'overlay/bold/toright': string;
30
+ readonly 'overlay/bold/toleft': string;
31
+ readonly 'overlay/bold/totop': string;
32
+ readonly 'border/accent/violet': string;
33
+ readonly 'bg/accent/violet': string;
34
+ readonly 'bg/accent/neutral': string;
35
+ readonly 'text/accent': string;
36
+ };
37
+ type TextGradientKey = keyof typeof textGradient;
38
+ type BgGradientKey = keyof typeof bgGradient;
39
+ type BorderGradientKey = keyof typeof borderGradient;
40
+ type OverlayGradientKey = keyof typeof overlayGradient;
41
+ type GradientKey = keyof typeof gradient;
42
+ export default gradient;
43
+ export { textGradient, bgGradient, borderGradient, overlayGradient };
44
+ export type { TextGradientKey, BgGradientKey, BorderGradientKey, OverlayGradientKey, GradientKey };
@@ -0,0 +1,15 @@
1
+ export { default as breakpoints, baseBreakpoints } from './breakpoints';
2
+ export { default as color, bgColor, borderColor, dimColor, iconColor, linkColor, scaleColor, textColor } from './color';
3
+ export type { BgColorKey, BorderColorKey, ColorKey, DimColorKey, IconColorKey, LinkColorKey, ScaleColorKey, TextColorKey, } from './color';
4
+ export { default as elevation, shadowElevation, surfaceElevation } from './elevation';
5
+ export type { ElevationKey, ShadowElevationKey, SurfaceElevationKey } from './elevation';
6
+ export { default as gradient, bgGradient, borderGradient, overlayGradient, textGradient } from './gradient';
7
+ export type { BgGradientKey, BorderGradientKey, GradientKey, OverlayGradientKey, TextGradientKey } from './gradient';
8
+ export { default as opacity, accentOpacity } from './opacity';
9
+ export type { AccentOpacityKey, OpacityKey } from './opacity';
10
+ export { default as radii } from './radii';
11
+ export type { RadiiKey } from './radii';
12
+ export { default as space } from './space';
13
+ export type { SpaceKey } from './space';
14
+ export { default as typography, fontSizes, fontWeights, lineHeights } from './typography';
15
+ export type { FontSizeKey, FontWeightKey, LineHeightKey, TypographyKey } from './typography';
@@ -0,0 +1,11 @@
1
+ declare const accentOpacity: {
2
+ readonly accent: number;
3
+ };
4
+ declare const opacity: {
5
+ readonly accent: number;
6
+ };
7
+ type AccentOpacityKey = keyof typeof accentOpacity;
8
+ type OpacityKey = keyof typeof opacity;
9
+ export default opacity;
10
+ export { accentOpacity };
11
+ export type { AccentOpacityKey, OpacityKey };
@@ -0,0 +1,13 @@
1
+ declare const radii: {
2
+ readonly none: number;
3
+ readonly xxs: number;
4
+ readonly xs: number;
5
+ readonly s: number;
6
+ readonly m: number;
7
+ readonly l: number;
8
+ readonly xl: number;
9
+ readonly xxl: number;
10
+ readonly full: number;
11
+ };
12
+ export type RadiiKey = keyof typeof radii;
13
+ export default radii;
@@ -0,0 +1,53 @@
1
+ declare const space: {
2
+ readonly '-80': number;
3
+ readonly '-50': number;
4
+ readonly '-48': number;
5
+ readonly '-40': number;
6
+ readonly '-32': number;
7
+ readonly '-30': number;
8
+ readonly '-28': number;
9
+ readonly '-24': number;
10
+ readonly '-20': number;
11
+ readonly '-18': number;
12
+ readonly '-16': number;
13
+ readonly '-14': number;
14
+ readonly '-12': number;
15
+ readonly '-10': number;
16
+ readonly '-8': number;
17
+ readonly '-7': number;
18
+ readonly '-6': number;
19
+ readonly '-5': number;
20
+ readonly '-4': number;
21
+ readonly '-3': number;
22
+ readonly '-2': number;
23
+ readonly '-1': number;
24
+ readonly '-0.5': number;
25
+ readonly '-0.25': number;
26
+ readonly 0: number;
27
+ readonly 0.25: number;
28
+ readonly 0.5: number;
29
+ readonly 1: number;
30
+ readonly 2: number;
31
+ readonly 3: number;
32
+ readonly 4: number;
33
+ readonly 5: number;
34
+ readonly 6: number;
35
+ readonly 7: number;
36
+ readonly 8: number;
37
+ readonly 10: number;
38
+ readonly 12: number;
39
+ readonly 14: number;
40
+ readonly 16: number;
41
+ readonly 18: number;
42
+ readonly 20: number;
43
+ readonly 24: number;
44
+ readonly 28: number;
45
+ readonly 30: number;
46
+ readonly 32: number;
47
+ readonly 40: number;
48
+ readonly 48: number;
49
+ readonly 50: number;
50
+ readonly 80: number;
51
+ };
52
+ export type SpaceKey = keyof typeof space;
53
+ export default space;
@@ -0,0 +1,15 @@
1
+ declare const fontSizes: {
2
+ xxs: number;
3
+ xs: number;
4
+ s: number;
5
+ m: number;
6
+ l: number;
7
+ xl: number;
8
+ xxl: number;
9
+ display4: number;
10
+ display3: number;
11
+ display2: number;
12
+ display1: number;
13
+ };
14
+ export type FontSizeKey = keyof typeof fontSizes;
15
+ export default fontSizes;
@@ -0,0 +1,7 @@
1
+ declare const fontWeights: {
2
+ readonly regular: number;
3
+ readonly medium: number;
4
+ readonly bold: number;
5
+ };
6
+ export type FontWeightKey = keyof typeof fontWeights;
7
+ export default fontWeights;
@@ -0,0 +1,134 @@
1
+ import fontSizes, { FontSizeKey } from './fontSizes';
2
+ import fontWeights, { FontWeightKey } from './fontWeights';
3
+ import lineHeights, { LineHeightKey } from './lineHeights';
4
+ declare const typography: {
5
+ readonly display1: {
6
+ readonly fontSize: number;
7
+ readonly fontWeight: number;
8
+ readonly lineHeight: number;
9
+ };
10
+ readonly display2: {
11
+ readonly fontSize: number;
12
+ readonly fontWeight: number;
13
+ readonly lineHeight: number;
14
+ };
15
+ readonly display3: {
16
+ readonly fontSize: number;
17
+ readonly fontWeight: number;
18
+ readonly lineHeight: number;
19
+ };
20
+ readonly display4: {
21
+ readonly fontSize: number;
22
+ readonly fontWeight: number;
23
+ readonly lineHeight: number;
24
+ };
25
+ readonly 'xxl/regular': {
26
+ readonly fontSize: number;
27
+ readonly fontWeight: number;
28
+ readonly lineHeight: number;
29
+ };
30
+ readonly xxl: {
31
+ readonly fontSize: number;
32
+ readonly fontWeight: number;
33
+ readonly lineHeight: number;
34
+ };
35
+ readonly 'xxl/bold': {
36
+ readonly fontSize: number;
37
+ readonly fontWeight: number;
38
+ readonly lineHeight: number;
39
+ };
40
+ readonly 'xl/regular': {
41
+ readonly fontSize: number;
42
+ readonly fontWeight: number;
43
+ readonly lineHeight: number;
44
+ };
45
+ readonly xl: {
46
+ readonly fontSize: number;
47
+ readonly fontWeight: number;
48
+ readonly lineHeight: number;
49
+ };
50
+ readonly 'xl/bold': {
51
+ readonly fontSize: number;
52
+ readonly fontWeight: number;
53
+ readonly lineHeight: number;
54
+ };
55
+ readonly 'l/regular': {
56
+ readonly fontSize: number;
57
+ readonly fontWeight: number;
58
+ readonly lineHeight: number;
59
+ };
60
+ readonly l: {
61
+ readonly fontSize: number;
62
+ readonly fontWeight: number;
63
+ readonly lineHeight: number;
64
+ };
65
+ readonly 'l/bold': {
66
+ readonly fontSize: number;
67
+ readonly fontWeight: number;
68
+ readonly lineHeight: number;
69
+ };
70
+ readonly 'm/regular': {
71
+ readonly fontSize: number;
72
+ readonly fontWeight: number;
73
+ readonly lineHeight: number;
74
+ };
75
+ readonly m: {
76
+ readonly fontSize: number;
77
+ readonly fontWeight: number;
78
+ readonly lineHeight: number;
79
+ };
80
+ readonly 'm/bold': {
81
+ readonly fontSize: number;
82
+ readonly fontWeight: number;
83
+ readonly lineHeight: number;
84
+ };
85
+ readonly 's/regular': {
86
+ readonly fontSize: number;
87
+ readonly fontWeight: number;
88
+ readonly lineHeight: number;
89
+ };
90
+ readonly s: {
91
+ readonly fontSize: number;
92
+ readonly fontWeight: number;
93
+ readonly lineHeight: number;
94
+ };
95
+ readonly 's/bold': {
96
+ readonly fontSize: number;
97
+ readonly fontWeight: number;
98
+ readonly lineHeight: number;
99
+ };
100
+ readonly 'xs/regular': {
101
+ readonly fontSize: number;
102
+ readonly fontWeight: number;
103
+ readonly lineHeight: number;
104
+ };
105
+ readonly xs: {
106
+ readonly fontSize: number;
107
+ readonly fontWeight: number;
108
+ readonly lineHeight: number;
109
+ };
110
+ readonly 'xs/bold': {
111
+ readonly fontSize: number;
112
+ readonly fontWeight: number;
113
+ readonly lineHeight: number;
114
+ };
115
+ readonly 'xxs/regular': {
116
+ readonly fontSize: number;
117
+ readonly fontWeight: number;
118
+ readonly lineHeight: number;
119
+ };
120
+ readonly xxs: {
121
+ readonly fontSize: number;
122
+ readonly fontWeight: number;
123
+ readonly lineHeight: number;
124
+ };
125
+ readonly 'xxs/bold': {
126
+ readonly fontSize: number;
127
+ readonly fontWeight: number;
128
+ readonly lineHeight: number;
129
+ };
130
+ };
131
+ type TypographyKey = keyof typeof typography;
132
+ export default typography;
133
+ export { fontSizes, fontWeights, lineHeights };
134
+ export type { TypographyKey, FontSizeKey, FontWeightKey, LineHeightKey };
@@ -0,0 +1,6 @@
1
+ declare const lineHeights: {
2
+ readonly 1: number;
3
+ readonly 2: number;
4
+ };
5
+ export type LineHeightKey = keyof typeof lineHeights;
6
+ export default lineHeights;
@@ -0,0 +1,7 @@
1
+ const device = {
2
+ deviceDesktop: 1280,
3
+ deviceTablet: 900,
4
+ deviceMobile: 640
5
+ };
6
+
7
+ export { device as default };
@@ -0,0 +1,8 @@
1
+ const colorStopList = {
2
+ colorStopListVioletPink: '#8E6CF0, #CF75F3',
3
+ colorStopListBlackGray: '#0F0E0F, #595959',
4
+ colorStopListWhite: '#FFFFFF, #FFFFFF00',
5
+ colorStopListBlack: '#000000, #00000000'
6
+ };
7
+
8
+ export { colorStopList as default };
@@ -0,0 +1,8 @@
1
+ const direction = {
2
+ directionToRight: 'to right',
3
+ directionToLeft: 'to left',
4
+ directionToRightBottom: 'to right bottom',
5
+ directionToTop: 'to top'
6
+ };
7
+
8
+ export { direction as default };
@@ -0,0 +1,5 @@
1
+ const opacity = {
2
+ opacity50: 0.5
3
+ };
4
+
5
+ export { opacity as default };