@gobolt/genesis 0.1.3 → 0.1.6
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/README.md +4 -6
- package/dist/{Typography-B2J8CPnt.js → Typography-8BO7aTuQ.js} +7 -6
- package/dist/components/Avatar/Avatar.js +4 -3
- package/dist/components/Avatar/__tests__/Avatar.test.js +1 -1
- package/dist/components/Badge/Badge.js +4 -3
- package/dist/components/Badge/__tests__/Badge.test.js +1 -1
- package/dist/components/Breadcrumb/Breadcrumb.js +1 -1
- package/dist/components/Breadcrumb/__tests__/Breadcrumb.test.js +1 -1
- package/dist/components/Button/Button.d.ts +4 -3
- package/dist/components/Button/Button.js +28 -24
- package/dist/components/Button/IconButton.d.ts +8 -0
- package/dist/components/Button/IconButton.js +29 -0
- package/dist/components/Button/UtilityButton.d.ts +5 -0
- package/dist/components/Button/UtilityButton.js +29 -0
- package/dist/components/Button/__stories__/Button.stories.d.ts +0 -4
- package/dist/components/Button/__stories__/IconButton.stories.d.ts +8 -0
- package/dist/components/Button/__stories__/UtilityButton.stories.d.ts +7 -0
- package/dist/components/Button/__tests__/Button.test.js +5 -4
- package/dist/components/Button/icon-button-styles.d.ts +12 -0
- package/dist/components/Button/icon-button-styles.js +65 -0
- package/dist/components/Button/index.d.ts +4 -0
- package/dist/components/Button/index.js +6 -2
- package/dist/components/Button/styles.d.ts +4 -3
- package/dist/components/Button/styles.js +37 -37
- package/dist/components/Card/__tests__/Card.test.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +4 -3
- package/dist/components/Checkbox/__tests__/Checkbox.test.js +1 -1
- package/dist/components/Dashboard/__stories__/DashboardLayoutContent.js +4 -3
- package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.js +5 -4
- package/dist/components/Dashboard/__tests__/Dashboard.test.js +1 -1
- package/dist/components/DatePicker/__tests__/DatePicker.test.js +1 -1
- package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.js +1 -1
- package/dist/components/ErrorBoundary/ErrorBoundary.js +8 -7
- package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.js +1 -1
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +4 -3
- package/dist/components/Form/Form.js +1 -1
- package/dist/components/Form/__stories__/FormStory.js +26 -25
- package/dist/components/Form/__tests__/form.test.js +2 -2
- package/dist/components/Form/index.js +1 -1
- package/dist/components/FormBrandon/Form.js +1 -1
- package/dist/components/FormBrandon/__stories__/FormStory.js +4 -3
- package/dist/components/FormBrandon/__tests__/form.test.js +1 -1
- package/dist/components/Input/Input.js +1 -1
- package/dist/components/Input/__tests__/Input.test.js +1 -1
- package/dist/components/Layout/Content/ResponsiveContent.js +4 -3
- package/dist/components/Layout/MainLayout/MainLayout.js +1 -1
- package/dist/components/Layout/__tests__/Layout.test.js +1 -1
- package/dist/components/Message/Message.js +11 -10
- package/dist/components/Message/__tests__/Message.test.js +1 -1
- package/dist/components/Notification/Notification.js +4 -3
- package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.js +1 -1
- package/dist/components/Notification/__tests__/Notification.test.js +1 -1
- package/dist/components/Popover/__tests__/Popover.test.js +1 -1
- package/dist/components/Progress/Progress.js +44 -50
- package/dist/components/Progress/Progress.util.js +4 -3
- package/dist/components/Progress/ProgressText.js +4 -3
- package/dist/components/Progress/__tests__/Progress.test.js +1 -1
- package/dist/components/Radio/Radio.js +4 -3
- package/dist/components/Radio/RadioGroup.js +1 -1
- package/dist/components/Radio/__tests__/RadioGroup.test.js +1 -1
- package/dist/components/Row/Row.js +1 -1
- package/dist/components/Row/RowActions/RowActions.js +4 -3
- package/dist/components/Row/RowLabelValue/RowLabelValue.js +5 -4
- package/dist/components/Row/__tests__/Row.test.js +1 -1
- package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.js +1 -1
- package/dist/components/Select/Select.js +1 -1
- package/dist/components/Select/__tests__/Select.test.js +1 -1
- package/dist/components/Shapes/__tests__/Shapes.test.js +1 -1
- package/dist/components/Switch/__stories__/Switch.stories.d.ts +2 -1
- package/dist/components/Switch/__tests__/Switch.test.js +1 -1
- package/dist/components/Table/__mocks__/table-mocks.js +6 -5
- package/dist/components/Table/__tests__/Table.test.js +1 -1
- package/dist/components/Tabs/__tests__/Tabs.test.js +1 -1
- package/dist/components/Tile/__tests__/Tile.test.js +1 -1
- package/dist/components/Toast/Toast.js +3 -2
- package/dist/components/Toast/__tests__/Toast.test.js +2 -2
- package/dist/components/Toast/index.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +4 -3
- package/dist/components/Tooltip/__tests__/Tooltip.test.js +1 -1
- package/dist/components/Typography/Typography.js +1 -1
- package/dist/components/Typography/__tests__/Typography.test.js +2 -2
- package/dist/components/Typography/index.js +1 -1
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.js +56 -52
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/index.js +14 -13
- package/dist/genesis/GenesisThemeBreakdown.js +4 -3
- package/dist/index.js +61 -57
- package/dist/providers/GenesisProvider.js +1 -1
- package/dist/providers/ToastProvider.js +5 -4
- package/dist/providers/index.js +1 -1
- package/dist/providers/useGenesis.js +1 -1
- package/dist/{setup-aZdxWCJq.js → setup-rcqlwLGQ.js} +1 -1
- package/dist/styles/design-tokens/border-tokens/BorderTokenList.js +4 -3
- package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.js +7 -6
- package/dist/styles/design-tokens/variables.d.ts +2 -0
- package/dist/styles/design-tokens/variables.js +581 -579
- package/dist/styles/theme/genesis-theme.d.ts +2 -0
- package/dist/styles/theme/genesis-theme.js +306 -247
- package/dist/styles/theme/genesis-theme.types.d.ts +7 -0
- package/dist/styles/theme/theme-tree/ThemeTree.js +4 -3
- package/dist/test/setup.js +2 -2
- package/package.json +13 -1
|
@@ -1,91 +1,95 @@
|
|
|
1
|
-
import { Size1 as g, BorderRadiusMd as
|
|
2
|
-
const
|
|
1
|
+
import { Size1 as g, BorderRadiusMd as T, Size2 as c, Size6 as k, Size5 as w, BorderRadiusSm as B, Size25 as E, ColorGrayWhite as s, ColorGrayBlack as x, ColorGray900 as D, ColorGray800 as M, ColorGray700 as y, ColorGray600 as N, ColorGray500 as h, ColorGray400 as A, ColorGray300 as u, ColorGray200 as R, ColorGray100 as l, ColorPurple900 as G, ColorPurple800 as P, ColorPurple700 as L, ColorPurple600 as O, ColorPurple500 as Y, ColorPurple400 as X, ColorPurple300 as I, ColorPurple200 as _, ColorPurple100 as K, ColorBlue900 as V, ColorBlue800 as j, ColorBlue700 as q, ColorBlue600 as J, ColorBlue500 as Q, ColorBlue400 as f, ColorBlue300 as U, ColorBlue200 as Z, ColorBlue100 as $, ColorSky900 as S, ColorSky800 as ee, ColorSky700 as v, ColorSky600 as re, ColorSky500 as oe, ColorSky400 as ie, ColorSky300 as te, ColorSky200 as ne, ColorSky100 as ae, ColorGreen900 as le, ColorGreen800 as ge, ColorGreen700 as ce, ColorGreen600 as de, ColorGreen500 as pe, ColorGreen400 as z, ColorGreen300 as se, ColorGreen200 as ye, ColorGreen100 as he, ColorYellow900 as ue, ColorYellow800 as fe, ColorYellow700 as Se, ColorYellow600 as ve, ColorYellow500 as C, ColorYellow400 as ze, ColorYellow300 as Ce, ColorYellow200 as be, ColorYellow100 as Fe, ColorOrange900 as me, ColorOrange800 as He, ColorOrange700 as We, ColorOrange600 as Te, ColorOrange500 as ke, ColorOrange400 as we, ColorOrange300 as Be, ColorOrange200 as Ee, ColorOrange100 as xe, ColorRed900 as De, ColorRed800 as Me, ColorRed700 as Ne, ColorRed600 as Ae, ColorRed500 as b, ColorRed400 as Re, ColorRed300 as Ge, ColorRed200 as Pe, ColorRed100 as Le, TypographyNarrowFontSizeDigits3 as Oe, TypographyNarrowFontSizeDigits2 as Ye, TypographyNarrowFontSizeDigits1 as Xe, TypographyNarrowFontSizeLink3 as Ie, TypographyNarrowFontSizeLink2 as _e, TypographyNarrowFontSizeLink1 as Ke, TypographyNarrowFontSizeLabel3 as Ve, TypographyNarrowFontSizeLabel2 as je, TypographyNarrowFontSizeLabel1 as qe, TypographyNarrowFontSizeOverline3 as Je, TypographyNarrowFontSizeOverline2 as Qe, TypographyNarrowFontSizeOverline1 as Ue, TypographyNarrowFontSizeMessage as Ze, TypographyNarrowFontSizeBody5 as $e, TypographyNarrowFontSizeBody4 as er, TypographyNarrowFontSizeBody3 as rr, TypographyNarrowFontSizeBody2 as or, TypographyNarrowFontSizeBody1 as ir, TypographyNarrowFontSizeSubHeading3 as tr, TypographyNarrowFontSizeSubHeading2 as nr, TypographyNarrowFontSizeSubHeading1 as ar, TypographyNarrowFontSizeHeading3 as lr, TypographyNarrowFontSizeHeading2 as gr, TypographyNarrowFontSizeHeading1 as cr, TypographyNarrowFontSizeDisplay3 as dr, TypographyNarrowFontSizeDisplay2 as pr, TypographyNarrowFontSizeDisplay1 as sr, TypographyMediumFontSizeDigits3 as yr, TypographyMediumFontSizeDigits2 as hr, TypographyMediumFontSizeDigits1 as ur, TypographyMediumFontSizeLink3 as fr, TypographyMediumFontSizeLink2 as Sr, TypographyMediumFontSizeLink1 as vr, TypographyMediumFontSizeLabel3 as zr, TypographyMediumFontSizeLabel2 as Cr, TypographyMediumFontSizeLabel1 as br, TypographyMediumFontSizeOverline3 as Fr, TypographyMediumFontSizeOverline2 as mr, TypographyMediumFontSizeOverline1 as Hr, TypographyMediumFontSizeMessage as Wr, TypographyMediumFontSizeBody5 as Tr, TypographyMediumFontSizeBody4 as kr, TypographyMediumFontSizeBody3 as wr, TypographyMediumFontSizeBody2 as Br, TypographyMediumFontSizeBody1 as Er, TypographyMediumFontSizeSubHeading3 as xr, TypographyMediumFontSizeSubHeading2 as Dr, TypographyMediumFontSizeSubHeading1 as Mr, TypographyMediumFontSizeHeading3 as Nr, TypographyMediumFontSizeHeading2 as Ar, TypographyMediumFontSizeHeading1 as Rr, TypographyMediumFontSizeDisplay3 as Gr, TypographyMediumFontSizeDisplay2 as Pr, TypographyMediumFontSizeDisplay1 as Lr, TypographyWideFontSizeDigits3 as Or, TypographyWideFontSizeDigits2 as Yr, TypographyWideFontSizeDigits1 as Xr, TypographyWideFontSizeLink3 as Ir, TypographyWideFontSizeLink2 as _r, TypographyWideFontSizeLink1 as Kr, TypographyWideFontSizeLabel3 as Vr, TypographyWideFontSizeLabel2 as jr, TypographyWideFontSizeLabel1 as qr, TypographyWideFontSizeOverline3 as Jr, TypographyWideFontSizeOverline2 as Qr, TypographyWideFontSizeOverline1 as Ur, TypographyWideFontSizeMessage as Zr, TypographyWideFontSizeBody5 as $r, TypographyWideFontSizeBody4 as eo, TypographyWideFontSizeBody3 as ro, TypographyWideFontSizeBody2 as oo, TypographyWideFontSizeBody1 as io, TypographyWideFontSizeSubHeading3 as to, TypographyWideFontSizeSubHeading2 as no, TypographyWideFontSizeSubHeading1 as ao, TypographyWideFontSizeHeading3 as lo, TypographyWideFontSizeHeading2 as go, TypographyWideFontSizeHeading1 as co, TypographyWideFontSizeDisplay3 as po, TypographyWideFontSizeDisplay2 as so, TypographyWideFontSizeDisplay1 as yo, TypographyPrimaryFontFamily as ho, BorderRadiusRounded as uo, BorderRadiusXxxl as fo, BorderRadiusXxl as So, BorderRadiusXl as vo, BorderRadiusLg as zo, BorderRadiusXs as Co, BorderRadiusNone as bo, Size4 as d, Size3 as p, Size025 as Fo, Size15 as mo, Size05 as Ho, Size64 as Wo, Size50 as To, Size43 as ko, Size39 as wo, Size35 as Bo, Size34 as Eo, Size32 as xo, Size30 as Do, Size28 as Mo, Size27 as No, Size24 as Ao, Size20 as Ro, Size18 as Go, Size16 as Po, Size14 as Lo, Size13 as Oo, Size12 as Yo, Size10 as Xo, Size8 as Io, Size7 as _o, Size2_5 as Ko, Size1_5 as Vo } from "../design-tokens/variables.js";
|
|
2
|
+
const jo = {
|
|
3
3
|
wide: 1280,
|
|
4
4
|
medium: 1024,
|
|
5
5
|
narrow: 480
|
|
6
6
|
}, a = {
|
|
7
|
-
BorderRadiusNone:
|
|
8
|
-
BorderRadiusXs:
|
|
9
|
-
BorderRadiusSm:
|
|
10
|
-
BorderRadiusMd:
|
|
11
|
-
BorderRadiusLg:
|
|
12
|
-
BorderRadiusXl:
|
|
13
|
-
BorderRadiusXxl:
|
|
14
|
-
BorderRadiusXxxl:
|
|
15
|
-
BorderRadiusRounded:
|
|
16
|
-
},
|
|
7
|
+
BorderRadiusNone: bo,
|
|
8
|
+
BorderRadiusXs: Co,
|
|
9
|
+
BorderRadiusSm: B,
|
|
10
|
+
BorderRadiusMd: T,
|
|
11
|
+
BorderRadiusLg: zo,
|
|
12
|
+
BorderRadiusXl: vo,
|
|
13
|
+
BorderRadiusXxl: So,
|
|
14
|
+
BorderRadiusXxxl: fo,
|
|
15
|
+
BorderRadiusRounded: uo
|
|
16
|
+
}, i = {
|
|
17
17
|
Size1: g,
|
|
18
18
|
// 4px
|
|
19
|
+
Size1_5: Vo,
|
|
20
|
+
// 6px
|
|
19
21
|
Size2: c,
|
|
20
22
|
// 8px
|
|
21
|
-
|
|
23
|
+
Size2_5: Ko,
|
|
24
|
+
// 10px
|
|
25
|
+
Size3: p,
|
|
22
26
|
// 12px
|
|
23
|
-
Size4:
|
|
27
|
+
Size4: d,
|
|
24
28
|
// 16px
|
|
25
|
-
Size5:
|
|
29
|
+
Size5: w,
|
|
26
30
|
// 20px
|
|
27
|
-
Size6:
|
|
31
|
+
Size6: k,
|
|
28
32
|
// 24px
|
|
29
|
-
Size7:
|
|
33
|
+
Size7: _o,
|
|
30
34
|
// 28px
|
|
31
|
-
Size8:
|
|
35
|
+
Size8: Io,
|
|
32
36
|
// 32px
|
|
33
|
-
Size10:
|
|
37
|
+
Size10: Xo,
|
|
34
38
|
// 40px
|
|
35
|
-
Size12:
|
|
39
|
+
Size12: Yo,
|
|
36
40
|
// 48px
|
|
37
|
-
Size13:
|
|
41
|
+
Size13: Oo,
|
|
38
42
|
// 52px
|
|
39
|
-
Size14:
|
|
43
|
+
Size14: Lo,
|
|
40
44
|
// 56px
|
|
41
|
-
Size16:
|
|
45
|
+
Size16: Po,
|
|
42
46
|
// 64px
|
|
43
|
-
Size18:
|
|
47
|
+
Size18: Go,
|
|
44
48
|
// 72px
|
|
45
|
-
Size20:
|
|
49
|
+
Size20: Ro,
|
|
46
50
|
// 80px
|
|
47
|
-
Size24:
|
|
51
|
+
Size24: Ao,
|
|
48
52
|
// 96px
|
|
49
|
-
Size27:
|
|
53
|
+
Size27: No,
|
|
50
54
|
// 108px
|
|
51
|
-
Size28:
|
|
55
|
+
Size28: Mo,
|
|
52
56
|
// 112px
|
|
53
|
-
Size30:
|
|
57
|
+
Size30: Do,
|
|
54
58
|
// 120px
|
|
55
|
-
Size32:
|
|
59
|
+
Size32: xo,
|
|
56
60
|
// 128px
|
|
57
|
-
Size34:
|
|
61
|
+
Size34: Eo,
|
|
58
62
|
// 136px
|
|
59
|
-
Size35:
|
|
63
|
+
Size35: Bo,
|
|
60
64
|
// 140px
|
|
61
|
-
Size39:
|
|
65
|
+
Size39: wo,
|
|
62
66
|
// 156px
|
|
63
|
-
Size43:
|
|
67
|
+
Size43: ko,
|
|
64
68
|
// 172px
|
|
65
|
-
Size50:
|
|
69
|
+
Size50: To,
|
|
66
70
|
// 200px
|
|
67
|
-
Size64:
|
|
71
|
+
Size64: Wo,
|
|
68
72
|
// 256px
|
|
69
|
-
Size05:
|
|
73
|
+
Size05: Ho,
|
|
70
74
|
// 2px
|
|
71
|
-
Size15:
|
|
75
|
+
Size15: mo,
|
|
72
76
|
// 6px
|
|
73
|
-
Size025:
|
|
77
|
+
Size025: Fo,
|
|
74
78
|
// 1px
|
|
75
|
-
Size25:
|
|
79
|
+
Size25: E,
|
|
76
80
|
// 10px
|
|
77
81
|
xs: g,
|
|
78
82
|
// 4px
|
|
79
83
|
sm: c,
|
|
80
84
|
// 8px
|
|
81
|
-
md:
|
|
85
|
+
md: p,
|
|
82
86
|
// 12px
|
|
83
|
-
lg:
|
|
87
|
+
lg: d,
|
|
84
88
|
// 16px
|
|
85
89
|
typography1: 12,
|
|
86
90
|
typography2: 14,
|
|
87
91
|
typography3: 16
|
|
88
|
-
},
|
|
92
|
+
}, pi = {
|
|
89
93
|
display1: "display1",
|
|
90
94
|
display2: "display2",
|
|
91
95
|
display3: "display3",
|
|
@@ -113,407 +117,407 @@ const Kr = {
|
|
|
113
117
|
digits1: "digits1",
|
|
114
118
|
digits2: "digits2",
|
|
115
119
|
digits3: "digits3"
|
|
116
|
-
},
|
|
120
|
+
}, qo = {
|
|
117
121
|
display1: {
|
|
118
|
-
fontSize:
|
|
122
|
+
fontSize: yo,
|
|
119
123
|
lineHeight: "3.5rem",
|
|
120
124
|
fontWeight: 700,
|
|
121
125
|
letterSpacing: "0"
|
|
122
126
|
},
|
|
123
127
|
display2: {
|
|
124
|
-
fontSize:
|
|
128
|
+
fontSize: so,
|
|
125
129
|
lineHeight: "3rem",
|
|
126
130
|
fontWeight: 700,
|
|
127
131
|
letterSpacing: "0"
|
|
128
132
|
},
|
|
129
133
|
display3: {
|
|
130
|
-
fontSize:
|
|
134
|
+
fontSize: po,
|
|
131
135
|
lineHeight: "2.5rem",
|
|
132
136
|
fontWeight: 700,
|
|
133
137
|
letterSpacing: "0"
|
|
134
138
|
},
|
|
135
139
|
heading1: {
|
|
136
|
-
fontSize:
|
|
140
|
+
fontSize: co,
|
|
137
141
|
lineHeight: "2rem",
|
|
138
142
|
fontWeight: 700,
|
|
139
143
|
letterSpacing: "0"
|
|
140
144
|
},
|
|
141
145
|
heading2: {
|
|
142
|
-
fontSize:
|
|
146
|
+
fontSize: go,
|
|
143
147
|
lineHeight: "1.75rem",
|
|
144
148
|
fontWeight: 700,
|
|
145
149
|
letterSpacing: "0"
|
|
146
150
|
},
|
|
147
151
|
heading3: {
|
|
148
|
-
fontSize:
|
|
152
|
+
fontSize: lo,
|
|
149
153
|
lineHeight: "1.5rem",
|
|
150
154
|
fontWeight: 700,
|
|
151
155
|
letterSpacing: "0"
|
|
152
156
|
},
|
|
153
157
|
subHeading1: {
|
|
154
|
-
fontSize:
|
|
158
|
+
fontSize: ao,
|
|
155
159
|
lineHeight: "1.25rem",
|
|
156
160
|
fontWeight: 600,
|
|
157
161
|
letterSpacing: "0"
|
|
158
162
|
},
|
|
159
163
|
subHeading2: {
|
|
160
|
-
fontSize:
|
|
164
|
+
fontSize: no,
|
|
161
165
|
lineHeight: "1.25rem",
|
|
162
166
|
fontWeight: 600,
|
|
163
167
|
letterSpacing: "0"
|
|
164
168
|
},
|
|
165
169
|
subHeading3: {
|
|
166
|
-
fontSize:
|
|
170
|
+
fontSize: to,
|
|
167
171
|
lineHeight: "1rem",
|
|
168
172
|
fontWeight: 600,
|
|
169
173
|
letterSpacing: "0"
|
|
170
174
|
},
|
|
171
175
|
body1: {
|
|
172
|
-
fontSize:
|
|
176
|
+
fontSize: io,
|
|
173
177
|
lineHeight: "1.5rem",
|
|
174
178
|
fontWeight: 400,
|
|
175
179
|
letterSpacing: "0"
|
|
176
180
|
},
|
|
177
181
|
body2: {
|
|
178
|
-
fontSize:
|
|
182
|
+
fontSize: oo,
|
|
179
183
|
lineHeight: "1.25rem",
|
|
180
184
|
fontWeight: 400,
|
|
181
185
|
letterSpacing: "0"
|
|
182
186
|
},
|
|
183
187
|
body3: {
|
|
184
|
-
fontSize:
|
|
188
|
+
fontSize: ro,
|
|
185
189
|
lineHeight: "1rem",
|
|
186
190
|
fontWeight: 400,
|
|
187
191
|
letterSpacing: "0"
|
|
188
192
|
},
|
|
189
193
|
body4: {
|
|
190
|
-
fontSize:
|
|
194
|
+
fontSize: eo,
|
|
191
195
|
lineHeight: "0.875rem",
|
|
192
196
|
fontWeight: 400,
|
|
193
197
|
letterSpacing: "0"
|
|
194
198
|
},
|
|
195
199
|
body5: {
|
|
196
|
-
fontSize: $
|
|
200
|
+
fontSize: $r,
|
|
197
201
|
lineHeight: "0.75rem",
|
|
198
202
|
fontWeight: 400,
|
|
199
203
|
letterSpacing: "0"
|
|
200
204
|
},
|
|
201
205
|
message: {
|
|
202
|
-
fontSize:
|
|
206
|
+
fontSize: Zr,
|
|
203
207
|
lineHeight: "23px",
|
|
204
208
|
fontWeight: 400,
|
|
205
209
|
letterSpacing: "0"
|
|
206
210
|
},
|
|
207
211
|
overline1: {
|
|
208
|
-
fontSize:
|
|
212
|
+
fontSize: Ur,
|
|
209
213
|
lineHeight: "0.75rem",
|
|
210
214
|
fontWeight: 500,
|
|
211
215
|
letterSpacing: "0"
|
|
212
216
|
},
|
|
213
217
|
overline2: {
|
|
214
|
-
fontSize:
|
|
218
|
+
fontSize: Qr,
|
|
215
219
|
lineHeight: "0.75rem",
|
|
216
220
|
fontWeight: 500,
|
|
217
221
|
letterSpacing: "0"
|
|
218
222
|
},
|
|
219
223
|
overline3: {
|
|
220
|
-
fontSize:
|
|
224
|
+
fontSize: Jr,
|
|
221
225
|
lineHeight: "0.75rem",
|
|
222
226
|
fontWeight: 500,
|
|
223
227
|
letterSpacing: "0"
|
|
224
228
|
},
|
|
225
229
|
label1: {
|
|
226
|
-
fontSize:
|
|
230
|
+
fontSize: qr,
|
|
227
231
|
lineHeight: "1rem",
|
|
228
232
|
fontWeight: 500,
|
|
229
233
|
letterSpacing: "0"
|
|
230
234
|
},
|
|
231
235
|
label2: {
|
|
232
|
-
fontSize:
|
|
236
|
+
fontSize: jr,
|
|
233
237
|
lineHeight: "1rem",
|
|
234
238
|
fontWeight: 500,
|
|
235
239
|
letterSpacing: "0"
|
|
236
240
|
},
|
|
237
241
|
label3: {
|
|
238
|
-
fontSize:
|
|
242
|
+
fontSize: Vr,
|
|
239
243
|
lineHeight: "1rem",
|
|
240
244
|
fontWeight: 500,
|
|
241
245
|
letterSpacing: "0"
|
|
242
246
|
},
|
|
243
247
|
link1: {
|
|
244
|
-
fontSize:
|
|
248
|
+
fontSize: Kr,
|
|
245
249
|
lineHeight: "1.5rem",
|
|
246
250
|
fontWeight: 500,
|
|
247
251
|
letterSpacing: "0"
|
|
248
252
|
},
|
|
249
253
|
link2: {
|
|
250
|
-
fontSize:
|
|
254
|
+
fontSize: _r,
|
|
251
255
|
lineHeight: "1.25rem",
|
|
252
256
|
fontWeight: 500,
|
|
253
257
|
letterSpacing: "0"
|
|
254
258
|
},
|
|
255
259
|
link3: {
|
|
256
|
-
fontSize:
|
|
260
|
+
fontSize: Ir,
|
|
257
261
|
lineHeight: "1rem",
|
|
258
262
|
fontWeight: 500,
|
|
259
263
|
letterSpacing: "0"
|
|
260
264
|
},
|
|
261
265
|
digits1: {
|
|
262
|
-
fontSize:
|
|
266
|
+
fontSize: Xr,
|
|
263
267
|
lineHeight: "3.5rem",
|
|
264
268
|
fontWeight: 700,
|
|
265
269
|
letterSpacing: "0"
|
|
266
270
|
},
|
|
267
271
|
digits2: {
|
|
268
|
-
fontSize:
|
|
272
|
+
fontSize: Yr,
|
|
269
273
|
lineHeight: "3rem",
|
|
270
274
|
fontWeight: 700,
|
|
271
275
|
letterSpacing: "0"
|
|
272
276
|
},
|
|
273
277
|
digits3: {
|
|
274
|
-
fontSize:
|
|
278
|
+
fontSize: Or,
|
|
275
279
|
lineHeight: "2.5rem",
|
|
276
280
|
fontWeight: 700,
|
|
277
281
|
letterSpacing: "0"
|
|
278
282
|
}
|
|
279
|
-
},
|
|
283
|
+
}, Jo = {
|
|
280
284
|
display1: {
|
|
281
|
-
fontSize:
|
|
285
|
+
fontSize: Lr,
|
|
282
286
|
lineHeight: "3.5rem",
|
|
283
287
|
fontWeight: 700,
|
|
284
288
|
letterSpacing: "0"
|
|
285
289
|
},
|
|
286
290
|
display2: {
|
|
287
|
-
fontSize:
|
|
291
|
+
fontSize: Pr,
|
|
288
292
|
lineHeight: "3rem",
|
|
289
293
|
fontWeight: 700,
|
|
290
294
|
letterSpacing: "0"
|
|
291
295
|
},
|
|
292
296
|
display3: {
|
|
293
|
-
fontSize:
|
|
297
|
+
fontSize: Gr,
|
|
294
298
|
lineHeight: "2.5rem",
|
|
295
299
|
fontWeight: 700,
|
|
296
300
|
letterSpacing: "0"
|
|
297
301
|
},
|
|
298
302
|
heading1: {
|
|
299
|
-
fontSize:
|
|
303
|
+
fontSize: Rr,
|
|
300
304
|
lineHeight: "2rem",
|
|
301
305
|
fontWeight: 700,
|
|
302
306
|
letterSpacing: "0"
|
|
303
307
|
},
|
|
304
308
|
heading2: {
|
|
305
|
-
fontSize:
|
|
309
|
+
fontSize: Ar,
|
|
306
310
|
lineHeight: "1.75rem",
|
|
307
311
|
fontWeight: 700,
|
|
308
312
|
letterSpacing: "0"
|
|
309
313
|
},
|
|
310
314
|
heading3: {
|
|
311
|
-
fontSize:
|
|
315
|
+
fontSize: Nr,
|
|
312
316
|
lineHeight: "1.5rem",
|
|
313
317
|
fontWeight: 700,
|
|
314
318
|
letterSpacing: "0"
|
|
315
319
|
},
|
|
316
320
|
subHeading1: {
|
|
317
|
-
fontSize:
|
|
321
|
+
fontSize: Mr,
|
|
318
322
|
lineHeight: "1.25rem",
|
|
319
323
|
fontWeight: 600,
|
|
320
324
|
letterSpacing: "0"
|
|
321
325
|
},
|
|
322
326
|
subHeading2: {
|
|
323
|
-
fontSize:
|
|
327
|
+
fontSize: Dr,
|
|
324
328
|
lineHeight: "1.25rem",
|
|
325
329
|
fontWeight: 600,
|
|
326
330
|
letterSpacing: "0"
|
|
327
331
|
},
|
|
328
332
|
subHeading3: {
|
|
329
|
-
fontSize:
|
|
333
|
+
fontSize: xr,
|
|
330
334
|
lineHeight: "1rem",
|
|
331
335
|
fontWeight: 600,
|
|
332
336
|
letterSpacing: "0"
|
|
333
337
|
},
|
|
334
338
|
body1: {
|
|
335
|
-
fontSize:
|
|
339
|
+
fontSize: Er,
|
|
336
340
|
lineHeight: "1.5rem",
|
|
337
341
|
fontWeight: 400,
|
|
338
342
|
letterSpacing: "0"
|
|
339
343
|
},
|
|
340
344
|
body2: {
|
|
341
|
-
fontSize:
|
|
345
|
+
fontSize: Br,
|
|
342
346
|
lineHeight: "1.25rem",
|
|
343
347
|
fontWeight: 400,
|
|
344
348
|
letterSpacing: "0"
|
|
345
349
|
},
|
|
346
350
|
body3: {
|
|
347
|
-
fontSize:
|
|
351
|
+
fontSize: wr,
|
|
348
352
|
lineHeight: "1rem",
|
|
349
353
|
fontWeight: 400,
|
|
350
354
|
letterSpacing: "0"
|
|
351
355
|
},
|
|
352
356
|
body4: {
|
|
353
|
-
fontSize:
|
|
357
|
+
fontSize: kr,
|
|
354
358
|
lineHeight: "0.875rem",
|
|
355
359
|
fontWeight: 400,
|
|
356
360
|
letterSpacing: "0"
|
|
357
361
|
},
|
|
358
362
|
body5: {
|
|
359
|
-
fontSize:
|
|
363
|
+
fontSize: Tr,
|
|
360
364
|
lineHeight: "0.75rem",
|
|
361
365
|
fontWeight: 400,
|
|
362
366
|
letterSpacing: "0"
|
|
363
367
|
},
|
|
364
368
|
message: {
|
|
365
|
-
fontSize:
|
|
369
|
+
fontSize: Wr,
|
|
366
370
|
lineHeight: "23px",
|
|
367
371
|
fontWeight: 400,
|
|
368
372
|
letterSpacing: "0"
|
|
369
373
|
},
|
|
370
374
|
overline1: {
|
|
371
|
-
fontSize:
|
|
375
|
+
fontSize: Hr,
|
|
372
376
|
lineHeight: "0.75rem",
|
|
373
377
|
fontWeight: 500,
|
|
374
378
|
letterSpacing: "0"
|
|
375
379
|
},
|
|
376
380
|
overline2: {
|
|
377
|
-
fontSize:
|
|
381
|
+
fontSize: mr,
|
|
378
382
|
lineHeight: "0.75rem",
|
|
379
383
|
fontWeight: 500,
|
|
380
384
|
letterSpacing: "0"
|
|
381
385
|
},
|
|
382
386
|
overline3: {
|
|
383
|
-
fontSize:
|
|
387
|
+
fontSize: Fr,
|
|
384
388
|
lineHeight: "0.75rem",
|
|
385
389
|
fontWeight: 500,
|
|
386
390
|
letterSpacing: "0"
|
|
387
391
|
},
|
|
388
392
|
label1: {
|
|
389
|
-
fontSize:
|
|
393
|
+
fontSize: br,
|
|
390
394
|
lineHeight: "1rem",
|
|
391
395
|
fontWeight: 500,
|
|
392
396
|
letterSpacing: "0"
|
|
393
397
|
},
|
|
394
398
|
label2: {
|
|
395
|
-
fontSize:
|
|
399
|
+
fontSize: Cr,
|
|
396
400
|
lineHeight: "1rem",
|
|
397
401
|
fontWeight: 500,
|
|
398
402
|
letterSpacing: "0"
|
|
399
403
|
},
|
|
400
404
|
label3: {
|
|
401
|
-
fontSize:
|
|
405
|
+
fontSize: zr,
|
|
402
406
|
lineHeight: "1rem",
|
|
403
407
|
fontWeight: 500,
|
|
404
408
|
letterSpacing: "0"
|
|
405
409
|
},
|
|
406
410
|
link1: {
|
|
407
|
-
fontSize:
|
|
411
|
+
fontSize: vr,
|
|
408
412
|
lineHeight: "1.5rem",
|
|
409
413
|
fontWeight: 500,
|
|
410
414
|
letterSpacing: "0"
|
|
411
415
|
},
|
|
412
416
|
link2: {
|
|
413
|
-
fontSize:
|
|
417
|
+
fontSize: Sr,
|
|
414
418
|
lineHeight: "1.25rem",
|
|
415
419
|
fontWeight: 500,
|
|
416
420
|
letterSpacing: "0"
|
|
417
421
|
},
|
|
418
422
|
link3: {
|
|
419
|
-
fontSize:
|
|
423
|
+
fontSize: fr,
|
|
420
424
|
lineHeight: "1rem",
|
|
421
425
|
fontWeight: 500,
|
|
422
426
|
letterSpacing: "0"
|
|
423
427
|
},
|
|
424
428
|
digits1: {
|
|
425
|
-
fontSize:
|
|
429
|
+
fontSize: ur,
|
|
426
430
|
lineHeight: "3.5rem",
|
|
427
431
|
fontWeight: 700,
|
|
428
432
|
letterSpacing: "0"
|
|
429
433
|
},
|
|
430
434
|
digits2: {
|
|
431
|
-
fontSize:
|
|
435
|
+
fontSize: hr,
|
|
432
436
|
lineHeight: "3rem",
|
|
433
437
|
fontWeight: 700,
|
|
434
438
|
letterSpacing: "0"
|
|
435
439
|
},
|
|
436
440
|
digits3: {
|
|
437
|
-
fontSize:
|
|
441
|
+
fontSize: yr,
|
|
438
442
|
lineHeight: "2.5rem",
|
|
439
443
|
fontWeight: 700,
|
|
440
444
|
letterSpacing: "0"
|
|
441
445
|
}
|
|
442
|
-
},
|
|
446
|
+
}, Qo = {
|
|
443
447
|
display1: {
|
|
444
|
-
fontSize:
|
|
448
|
+
fontSize: sr,
|
|
445
449
|
lineHeight: "3.5rem",
|
|
446
450
|
fontWeight: 700,
|
|
447
451
|
letterSpacing: "0"
|
|
448
452
|
},
|
|
449
453
|
display2: {
|
|
450
|
-
fontSize:
|
|
454
|
+
fontSize: pr,
|
|
451
455
|
lineHeight: "3rem",
|
|
452
456
|
fontWeight: 700,
|
|
453
457
|
letterSpacing: "0"
|
|
454
458
|
},
|
|
455
459
|
display3: {
|
|
456
|
-
fontSize:
|
|
460
|
+
fontSize: dr,
|
|
457
461
|
lineHeight: "2.5rem",
|
|
458
462
|
fontWeight: 700,
|
|
459
463
|
letterSpacing: "0"
|
|
460
464
|
},
|
|
461
465
|
heading1: {
|
|
462
|
-
fontSize:
|
|
466
|
+
fontSize: cr,
|
|
463
467
|
lineHeight: "2rem",
|
|
464
468
|
fontWeight: 700,
|
|
465
469
|
letterSpacing: "0"
|
|
466
470
|
},
|
|
467
471
|
heading2: {
|
|
468
|
-
fontSize:
|
|
472
|
+
fontSize: gr,
|
|
469
473
|
lineHeight: "1.75rem",
|
|
470
474
|
fontWeight: 700,
|
|
471
475
|
letterSpacing: "0"
|
|
472
476
|
},
|
|
473
477
|
heading3: {
|
|
474
|
-
fontSize:
|
|
478
|
+
fontSize: lr,
|
|
475
479
|
lineHeight: "1.5rem",
|
|
476
480
|
fontWeight: 700,
|
|
477
481
|
letterSpacing: "0"
|
|
478
482
|
},
|
|
479
483
|
subHeading1: {
|
|
480
|
-
fontSize:
|
|
484
|
+
fontSize: ar,
|
|
481
485
|
lineHeight: "1.25rem",
|
|
482
486
|
fontWeight: 600,
|
|
483
487
|
letterSpacing: "0"
|
|
484
488
|
},
|
|
485
489
|
subHeading2: {
|
|
486
|
-
fontSize:
|
|
490
|
+
fontSize: nr,
|
|
487
491
|
lineHeight: "1.25rem",
|
|
488
492
|
fontWeight: 600,
|
|
489
493
|
letterSpacing: "0"
|
|
490
494
|
},
|
|
491
495
|
subHeading3: {
|
|
492
|
-
fontSize:
|
|
496
|
+
fontSize: tr,
|
|
493
497
|
lineHeight: "1rem",
|
|
494
498
|
fontWeight: 600,
|
|
495
499
|
letterSpacing: "0"
|
|
496
500
|
},
|
|
497
501
|
body1: {
|
|
498
|
-
fontSize:
|
|
502
|
+
fontSize: ir,
|
|
499
503
|
lineHeight: "1.5rem",
|
|
500
504
|
fontWeight: 400,
|
|
501
505
|
letterSpacing: "0"
|
|
502
506
|
},
|
|
503
507
|
body2: {
|
|
504
|
-
fontSize:
|
|
508
|
+
fontSize: or,
|
|
505
509
|
lineHeight: "1.25rem",
|
|
506
510
|
fontWeight: 400,
|
|
507
511
|
letterSpacing: "0"
|
|
508
512
|
},
|
|
509
513
|
body3: {
|
|
510
|
-
fontSize:
|
|
514
|
+
fontSize: rr,
|
|
511
515
|
lineHeight: "1rem",
|
|
512
516
|
fontWeight: 400,
|
|
513
517
|
letterSpacing: "0"
|
|
514
518
|
},
|
|
515
519
|
body4: {
|
|
516
|
-
fontSize:
|
|
520
|
+
fontSize: er,
|
|
517
521
|
lineHeight: "0.875rem",
|
|
518
522
|
fontWeight: 400,
|
|
519
523
|
letterSpacing: "0"
|
|
@@ -525,55 +529,55 @@ const Kr = {
|
|
|
525
529
|
letterSpacing: "0"
|
|
526
530
|
},
|
|
527
531
|
message: {
|
|
528
|
-
fontSize:
|
|
532
|
+
fontSize: Ze,
|
|
529
533
|
lineHeight: "23px",
|
|
530
534
|
fontWeight: 400,
|
|
531
535
|
letterSpacing: "0"
|
|
532
536
|
},
|
|
533
537
|
overline1: {
|
|
534
|
-
fontSize:
|
|
538
|
+
fontSize: Ue,
|
|
535
539
|
lineHeight: "0.75rem",
|
|
536
540
|
fontWeight: 500,
|
|
537
541
|
letterSpacing: "0"
|
|
538
542
|
},
|
|
539
543
|
overline2: {
|
|
540
|
-
fontSize:
|
|
544
|
+
fontSize: Qe,
|
|
541
545
|
lineHeight: "0.75rem",
|
|
542
546
|
fontWeight: 500,
|
|
543
547
|
letterSpacing: "0"
|
|
544
548
|
},
|
|
545
549
|
overline3: {
|
|
546
|
-
fontSize:
|
|
550
|
+
fontSize: Je,
|
|
547
551
|
lineHeight: "0.75rem",
|
|
548
552
|
fontWeight: 500,
|
|
549
553
|
letterSpacing: "0"
|
|
550
554
|
},
|
|
551
555
|
label1: {
|
|
552
|
-
fontSize:
|
|
556
|
+
fontSize: qe,
|
|
553
557
|
lineHeight: "1rem",
|
|
554
558
|
fontWeight: 500,
|
|
555
559
|
letterSpacing: "0"
|
|
556
560
|
},
|
|
557
561
|
label2: {
|
|
558
|
-
fontSize:
|
|
562
|
+
fontSize: je,
|
|
559
563
|
lineHeight: "1rem",
|
|
560
564
|
fontWeight: 500,
|
|
561
565
|
letterSpacing: "0"
|
|
562
566
|
},
|
|
563
567
|
label3: {
|
|
564
|
-
fontSize:
|
|
568
|
+
fontSize: Ve,
|
|
565
569
|
lineHeight: "1rem",
|
|
566
570
|
fontWeight: 500,
|
|
567
571
|
letterSpacing: "0"
|
|
568
572
|
},
|
|
569
573
|
link1: {
|
|
570
|
-
fontSize:
|
|
574
|
+
fontSize: Ke,
|
|
571
575
|
lineHeight: "1.5rem",
|
|
572
576
|
fontWeight: 500,
|
|
573
577
|
letterSpacing: "0"
|
|
574
578
|
},
|
|
575
579
|
link2: {
|
|
576
|
-
fontSize:
|
|
580
|
+
fontSize: _e,
|
|
577
581
|
lineHeight: "1.25rem",
|
|
578
582
|
fontWeight: 500,
|
|
579
583
|
letterSpacing: "0"
|
|
@@ -597,131 +601,140 @@ const Kr = {
|
|
|
597
601
|
letterSpacing: "0"
|
|
598
602
|
},
|
|
599
603
|
digits3: {
|
|
600
|
-
fontSize:
|
|
604
|
+
fontSize: Oe,
|
|
601
605
|
lineHeight: "2.5rem",
|
|
602
606
|
fontWeight: 700,
|
|
603
607
|
letterSpacing: "0"
|
|
604
608
|
}
|
|
605
|
-
},
|
|
606
|
-
fontFamily:
|
|
607
|
-
wide:
|
|
608
|
-
medium:
|
|
609
|
-
narrow:
|
|
610
|
-
},
|
|
609
|
+
}, Uo = {
|
|
610
|
+
fontFamily: ho,
|
|
611
|
+
wide: qo,
|
|
612
|
+
medium: Jo,
|
|
613
|
+
narrow: Qo
|
|
614
|
+
}, o = {
|
|
611
615
|
red: {
|
|
612
|
-
100:
|
|
613
|
-
200:
|
|
616
|
+
100: Le,
|
|
617
|
+
200: Pe,
|
|
614
618
|
300: Ge,
|
|
615
619
|
400: Re,
|
|
616
|
-
500:
|
|
617
|
-
600:
|
|
618
|
-
700:
|
|
619
|
-
800:
|
|
620
|
-
900:
|
|
620
|
+
500: b,
|
|
621
|
+
600: Ae,
|
|
622
|
+
700: Ne,
|
|
623
|
+
800: Me,
|
|
624
|
+
900: De
|
|
621
625
|
},
|
|
622
626
|
orange: {
|
|
623
|
-
100:
|
|
624
|
-
200:
|
|
625
|
-
300:
|
|
626
|
-
400:
|
|
627
|
-
500:
|
|
628
|
-
600:
|
|
629
|
-
700:
|
|
630
|
-
800:
|
|
631
|
-
900:
|
|
627
|
+
100: xe,
|
|
628
|
+
200: Ee,
|
|
629
|
+
300: Be,
|
|
630
|
+
400: we,
|
|
631
|
+
500: ke,
|
|
632
|
+
600: Te,
|
|
633
|
+
700: We,
|
|
634
|
+
800: He,
|
|
635
|
+
900: me
|
|
632
636
|
},
|
|
633
637
|
yellow: {
|
|
634
|
-
100:
|
|
635
|
-
200:
|
|
638
|
+
100: Fe,
|
|
639
|
+
200: be,
|
|
636
640
|
300: Ce,
|
|
637
641
|
400: ze,
|
|
638
|
-
500:
|
|
639
|
-
600:
|
|
640
|
-
700:
|
|
641
|
-
800:
|
|
642
|
-
900:
|
|
642
|
+
500: C,
|
|
643
|
+
600: ve,
|
|
644
|
+
700: Se,
|
|
645
|
+
800: fe,
|
|
646
|
+
900: ue
|
|
643
647
|
},
|
|
644
648
|
green: {
|
|
645
|
-
100:
|
|
646
|
-
200:
|
|
647
|
-
300:
|
|
648
|
-
400:
|
|
649
|
-
500:
|
|
650
|
-
600:
|
|
651
|
-
700:
|
|
652
|
-
800:
|
|
653
|
-
900:
|
|
649
|
+
100: he,
|
|
650
|
+
200: ye,
|
|
651
|
+
300: se,
|
|
652
|
+
400: z,
|
|
653
|
+
500: pe,
|
|
654
|
+
600: de,
|
|
655
|
+
700: ce,
|
|
656
|
+
800: ge,
|
|
657
|
+
900: le
|
|
654
658
|
},
|
|
655
659
|
sky: {
|
|
656
|
-
100:
|
|
657
|
-
200:
|
|
658
|
-
300:
|
|
660
|
+
100: ae,
|
|
661
|
+
200: ne,
|
|
662
|
+
300: te,
|
|
659
663
|
400: ie,
|
|
660
|
-
500:
|
|
661
|
-
600:
|
|
662
|
-
700:
|
|
663
|
-
800:
|
|
664
|
+
500: oe,
|
|
665
|
+
600: re,
|
|
666
|
+
700: v,
|
|
667
|
+
800: ee,
|
|
664
668
|
900: S
|
|
665
669
|
},
|
|
666
670
|
blue: {
|
|
667
|
-
100:
|
|
668
|
-
200:
|
|
669
|
-
300:
|
|
670
|
-
400:
|
|
671
|
-
500:
|
|
672
|
-
600:
|
|
673
|
-
700:
|
|
674
|
-
800:
|
|
675
|
-
900:
|
|
671
|
+
100: $,
|
|
672
|
+
200: Z,
|
|
673
|
+
300: U,
|
|
674
|
+
400: f,
|
|
675
|
+
500: Q,
|
|
676
|
+
600: J,
|
|
677
|
+
700: q,
|
|
678
|
+
800: j,
|
|
679
|
+
900: V
|
|
676
680
|
},
|
|
677
681
|
purple: {
|
|
678
|
-
100:
|
|
679
|
-
200:
|
|
680
|
-
300:
|
|
681
|
-
400:
|
|
682
|
-
500:
|
|
683
|
-
600:
|
|
684
|
-
700:
|
|
685
|
-
800:
|
|
686
|
-
900:
|
|
682
|
+
100: K,
|
|
683
|
+
200: _,
|
|
684
|
+
300: I,
|
|
685
|
+
400: X,
|
|
686
|
+
500: Y,
|
|
687
|
+
600: O,
|
|
688
|
+
700: L,
|
|
689
|
+
800: P,
|
|
690
|
+
900: G
|
|
687
691
|
},
|
|
688
692
|
gray: {
|
|
689
693
|
100: l,
|
|
690
|
-
200:
|
|
691
|
-
300:
|
|
692
|
-
400:
|
|
694
|
+
200: R,
|
|
695
|
+
300: u,
|
|
696
|
+
400: A,
|
|
693
697
|
500: h,
|
|
694
|
-
600:
|
|
698
|
+
600: N,
|
|
695
699
|
700: y,
|
|
696
|
-
800:
|
|
697
|
-
900:
|
|
698
|
-
black:
|
|
700
|
+
800: M,
|
|
701
|
+
900: D,
|
|
702
|
+
black: x,
|
|
699
703
|
white: s
|
|
700
704
|
}
|
|
701
|
-
},
|
|
705
|
+
}, Zo = {
|
|
702
706
|
padding: {
|
|
703
|
-
verPadding:
|
|
707
|
+
verPadding: i.Size25,
|
|
704
708
|
// 25px
|
|
705
|
-
horPadding:
|
|
709
|
+
horPadding: i.Size6
|
|
706
710
|
// 10px
|
|
707
711
|
},
|
|
708
|
-
gap:
|
|
712
|
+
gap: i.Size2,
|
|
709
713
|
// 8px
|
|
710
714
|
radius: a.BorderRadiusMd
|
|
711
715
|
// 6px
|
|
712
|
-
},
|
|
716
|
+
}, $o = {
|
|
717
|
+
padding: {
|
|
718
|
+
verPadding: 10,
|
|
719
|
+
horPadding: 12
|
|
720
|
+
},
|
|
721
|
+
gap: i.Size2,
|
|
722
|
+
// 8px
|
|
723
|
+
radius: a.BorderRadiusSm
|
|
724
|
+
// 6px
|
|
725
|
+
}, ei = {
|
|
713
726
|
padding: {
|
|
714
727
|
verPadding: 10,
|
|
715
728
|
horPadding: 12
|
|
716
729
|
},
|
|
717
|
-
gap:
|
|
730
|
+
gap: i.Size2,
|
|
718
731
|
// 8px
|
|
719
732
|
radius: a.BorderRadiusSm
|
|
720
733
|
// 6px
|
|
721
|
-
},
|
|
734
|
+
}, ri = {
|
|
722
735
|
suffixPrefixVerPadding: 11,
|
|
723
736
|
// special case - see sizing in FIGMA
|
|
724
|
-
suffixPrefixHorPadding:
|
|
737
|
+
suffixPrefixHorPadding: i.Size2
|
|
725
738
|
}, t = {
|
|
726
739
|
color: "#6C6C6C",
|
|
727
740
|
backgroundColor: "#EEEEEE",
|
|
@@ -776,7 +789,7 @@ const Kr = {
|
|
|
776
789
|
onsurface: "#222222"
|
|
777
790
|
}
|
|
778
791
|
}
|
|
779
|
-
},
|
|
792
|
+
}, F = {
|
|
780
793
|
primary: {
|
|
781
794
|
active: {
|
|
782
795
|
color: e.interactive.primary.onsurface,
|
|
@@ -882,7 +895,7 @@ const Kr = {
|
|
|
882
895
|
utility: {
|
|
883
896
|
active: {
|
|
884
897
|
color: e.interactive.secondary.onsurface,
|
|
885
|
-
backgroundColor:
|
|
898
|
+
backgroundColor: "#FFF",
|
|
886
899
|
borderColor: e.interactive.secondary.active
|
|
887
900
|
},
|
|
888
901
|
hover: {
|
|
@@ -897,7 +910,7 @@ const Kr = {
|
|
|
897
910
|
},
|
|
898
911
|
focussed: {
|
|
899
912
|
color: e.interactive.secondary.onsurface,
|
|
900
|
-
backgroundColor:
|
|
913
|
+
backgroundColor: "#FFF",
|
|
901
914
|
borderColor: e.interactive.secondary.active,
|
|
902
915
|
ringColor: e.inputs.onsurface.focus
|
|
903
916
|
},
|
|
@@ -913,6 +926,45 @@ const Kr = {
|
|
|
913
926
|
},
|
|
914
927
|
disabled: t
|
|
915
928
|
},
|
|
929
|
+
icon: {
|
|
930
|
+
active: {
|
|
931
|
+
color: e.interactive.tertiary.onsurface,
|
|
932
|
+
backgroundColor: "transparent",
|
|
933
|
+
borderColor: "transparent"
|
|
934
|
+
},
|
|
935
|
+
hover: {
|
|
936
|
+
color: e.interactive.tertiary.onsurface,
|
|
937
|
+
backgroundColor: "#DEEFF3",
|
|
938
|
+
borderColor: "transparent"
|
|
939
|
+
},
|
|
940
|
+
pressed: {
|
|
941
|
+
color: e.interactive.tertiary.onsurface,
|
|
942
|
+
backgroundColor: "#DEEFF3",
|
|
943
|
+
borderColor: "transparent"
|
|
944
|
+
},
|
|
945
|
+
selected: {
|
|
946
|
+
color: e.interactive.tertiary.onsurface,
|
|
947
|
+
backgroundColor: "#DEEFF3",
|
|
948
|
+
borderColor: "transparent"
|
|
949
|
+
},
|
|
950
|
+
focussed: {
|
|
951
|
+
color: e.interactive.tertiary.onsurface,
|
|
952
|
+
backgroundColor: "transparent",
|
|
953
|
+
borderColor: "transparent",
|
|
954
|
+
ringColor: e.inputs.onsurface.focus
|
|
955
|
+
},
|
|
956
|
+
error: {
|
|
957
|
+
...n,
|
|
958
|
+
ringColor: e.inputs.onsurface.focus
|
|
959
|
+
},
|
|
960
|
+
default: {
|
|
961
|
+
color: e.interactive.tertiary.onsurface,
|
|
962
|
+
backgroundColor: e.interactive.tertiary.active,
|
|
963
|
+
borderColor: e.interactive.tertiary.active,
|
|
964
|
+
ringColor: e.inputs.onsurface.focus
|
|
965
|
+
},
|
|
966
|
+
disabled: t
|
|
967
|
+
},
|
|
916
968
|
status: {
|
|
917
969
|
error: {
|
|
918
970
|
default: "#CF3237",
|
|
@@ -929,7 +981,7 @@ const Kr = {
|
|
|
929
981
|
"surface-hover": "#A7DFAF"
|
|
930
982
|
},
|
|
931
983
|
warning: {
|
|
932
|
-
default:
|
|
984
|
+
default: C,
|
|
933
985
|
ringColor: e.inputs.onsurface.focus,
|
|
934
986
|
onsurface: "#704819",
|
|
935
987
|
surface: "#FFF2DF",
|
|
@@ -987,7 +1039,7 @@ const Kr = {
|
|
|
987
1039
|
onsurface: "#222222"
|
|
988
1040
|
},
|
|
989
1041
|
link: {
|
|
990
|
-
active:
|
|
1042
|
+
active: v,
|
|
991
1043
|
hover: S,
|
|
992
1044
|
disabled: l,
|
|
993
1045
|
current: "#384DF6"
|
|
@@ -1007,6 +1059,12 @@ const Kr = {
|
|
|
1007
1059
|
focus: "#384DF6",
|
|
1008
1060
|
placeholder: "#6C6C6C",
|
|
1009
1061
|
"icon-disabled": "#6C6C6C"
|
|
1062
|
+
},
|
|
1063
|
+
progress: {
|
|
1064
|
+
empty: u,
|
|
1065
|
+
success: z,
|
|
1066
|
+
error: b,
|
|
1067
|
+
info: f
|
|
1010
1068
|
}
|
|
1011
1069
|
},
|
|
1012
1070
|
surface: {
|
|
@@ -1022,9 +1080,9 @@ const Kr = {
|
|
|
1022
1080
|
"copy-dark": "#222222",
|
|
1023
1081
|
"copy-disabled": "#6C6C6C"
|
|
1024
1082
|
}
|
|
1025
|
-
},
|
|
1026
|
-
|
|
1027
|
-
const
|
|
1083
|
+
}, oi = F;
|
|
1084
|
+
o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.hover, r.interactive.tertiary.hover, r.interactive.tertiary.onsurface, r.interactive.tertiary.pressed, r.interactive.tertiary.pressed, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.onsurface, r.interactive.tertiary.onsurface, r.interactive.tertiary.pressed, r.interactive.tertiary.pressed, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active;
|
|
1085
|
+
const ii = {
|
|
1028
1086
|
general: {
|
|
1029
1087
|
1: "box-shadow: 0px 4px 16px 0px #00000026",
|
|
1030
1088
|
2: "box-shadow: 0px 8px 24px -4px #00000026",
|
|
@@ -1038,58 +1096,59 @@ const $r = {
|
|
|
1038
1096
|
inputs: {
|
|
1039
1097
|
1: "box-shadow: 0px 1px 2px 0px #0000001F"
|
|
1040
1098
|
}
|
|
1041
|
-
},
|
|
1099
|
+
}, ti = {
|
|
1042
1100
|
instant: 0,
|
|
1043
1101
|
veryfast: 0.15,
|
|
1044
1102
|
fast: 0.33,
|
|
1045
1103
|
medium: 0.5,
|
|
1046
1104
|
slow: 1,
|
|
1047
1105
|
veryslow: 2
|
|
1048
|
-
},
|
|
1106
|
+
}, ni = {
|
|
1049
1107
|
"ver-padding": 4,
|
|
1050
1108
|
"right-padding": 8,
|
|
1051
1109
|
"left-padding": 8,
|
|
1052
1110
|
radius: 50
|
|
1053
|
-
},
|
|
1054
|
-
"ver-padding":
|
|
1055
|
-
"hor-padding":
|
|
1111
|
+
}, ai = {
|
|
1112
|
+
"ver-padding": i.Size1,
|
|
1113
|
+
"hor-padding": i.Size2,
|
|
1056
1114
|
radius: a.BorderRadiusMd,
|
|
1057
|
-
gap:
|
|
1058
|
-
},
|
|
1059
|
-
"ver-padding":
|
|
1060
|
-
"hor-padding":
|
|
1061
|
-
gap:
|
|
1062
|
-
},
|
|
1063
|
-
button:
|
|
1064
|
-
utilityButton:
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1115
|
+
gap: i.Size1
|
|
1116
|
+
}, li = {
|
|
1117
|
+
"ver-padding": i.Size5,
|
|
1118
|
+
"hor-padding": i.Size6,
|
|
1119
|
+
gap: i.Size2
|
|
1120
|
+
}, gi = {
|
|
1121
|
+
button: Zo,
|
|
1122
|
+
utilityButton: $o,
|
|
1123
|
+
iconButton: ei,
|
|
1124
|
+
input: ri,
|
|
1125
|
+
row: li,
|
|
1126
|
+
badge: ni,
|
|
1127
|
+
popover: ai
|
|
1128
|
+
}, ci = (H, W) => H.status[W].default, m = {
|
|
1129
|
+
breakpoints: jo,
|
|
1130
|
+
sizing: i,
|
|
1072
1131
|
borderRadius: a,
|
|
1073
|
-
typography:
|
|
1074
|
-
allColors:
|
|
1075
|
-
components:
|
|
1076
|
-
motion:
|
|
1077
|
-
shadows:
|
|
1078
|
-
getStatusColor:
|
|
1079
|
-
},
|
|
1080
|
-
...
|
|
1081
|
-
colors:
|
|
1132
|
+
typography: Uo,
|
|
1133
|
+
allColors: o,
|
|
1134
|
+
components: gi,
|
|
1135
|
+
motion: ti,
|
|
1136
|
+
shadows: ii,
|
|
1137
|
+
getStatusColor: ci
|
|
1138
|
+
}, si = {
|
|
1139
|
+
...m,
|
|
1140
|
+
colors: F,
|
|
1082
1141
|
mode: "light"
|
|
1083
|
-
},
|
|
1084
|
-
...
|
|
1085
|
-
colors:
|
|
1142
|
+
}, yi = {
|
|
1143
|
+
...m,
|
|
1144
|
+
colors: oi,
|
|
1086
1145
|
mode: "dark"
|
|
1087
1146
|
};
|
|
1088
1147
|
export {
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1148
|
+
pi as TypographySizeKey,
|
|
1149
|
+
m as baseTokens,
|
|
1150
|
+
jo as breakpoints,
|
|
1151
|
+
yi as darkTheme,
|
|
1152
|
+
si as lightTheme,
|
|
1153
|
+
i as sizing
|
|
1095
1154
|
};
|