neo.mjs 6.9.11 → 6.10.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/BACKERS.md +0 -30
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/learnneo/index.html +7 -2
- package/apps/learnneo/neo-config.json +1 -4
- package/apps/learnneo/view/LivePreview.mjs +171 -0
- package/apps/learnneo/view/Viewport.mjs +11 -4
- package/apps/learnneo/view/ViewportController.mjs +2 -2
- package/apps/learnneo/view/home/ContentTreeList.mjs +93 -5
- package/apps/learnneo/view/home/MainContainer.mjs +16 -16
- package/apps/learnneo/view/home/MainContainerController.mjs +5 -20
- package/apps/learnneo/view/home/MainContainerModel.mjs +3 -5
- package/apps/newwebsite/index.html +3 -0
- package/buildScripts/convertDesignTokens.mjs +173 -0
- package/examples/ServiceWorker.mjs +2 -2
- package/package.json +5 -8
- package/resources/data/deck/learnneo/p/2023-10-01T18-29-19-158Z.md +14 -16
- package/resources/data/deck/learnneo/p/2023-10-07T19-18-28-517Z.md +9 -17
- package/resources/data/deck/learnneo/p/2023-10-08T20-20-07-934Z.md +7 -5
- package/resources/data/deck/learnneo/p/2023-10-08T20-20-37-336Z.md +17 -10
- package/resources/data/deck/learnneo/p/2023-10-14T19-25-08-153Z.md +18 -22
- package/resources/data/deck/learnneo/p/2023-10-31T13-59-37-550Z.md +31 -0
- package/resources/data/deck/learnneo/p/MainThreadAddonExample.md +15 -0
- package/resources/data/deck/learnneo/p/MainThreadAddonIntro.md +46 -0
- package/resources/data/deck/learnneo/p/TestLivePreview.md +10 -0
- package/resources/data/deck/learnneo/p/stylesheet.md +22 -8
- package/resources/data/deck/learnneo/t.json +126 -56
- package/resources/data/deck/training/p/2023-01-10T02-21-54-303Z.md +1 -1
- package/resources/data/deck/training/t.json +1276 -1
- package/resources/design-tokens/json/component.json +288 -0
- package/resources/design-tokens/json/core.json +352 -0
- package/resources/design-tokens/json/semantic.json +231 -0
- package/resources/images/logos/Github-logo-black.svg +1 -0
- package/resources/images/logos/Slack-logo-black.svg +17 -0
- package/resources/scss/src/apps/learnneo/Viewport.scss +3 -0
- package/resources/scss/src/apps/learnneo/home/ContentTreeList.scss +60 -13
- package/resources/scss/src/apps/learnneo/home/ContentView.scss +11 -2
- package/resources/scss/src/apps/newwebsite/MainContainer.scss +14 -15
- package/resources/scss/src/list/Base.scss +4 -0
- package/resources/scss/theme-neo-light/Global.scss +36 -16
- package/resources/scss/theme-neo-light/button/Base.scss +46 -45
- package/resources/scss/theme-neo-light/design-tokens/Component.scss +66 -1
- package/resources/scss/theme-neo-light/design-tokens/Core.scss +66 -5
- package/resources/scss/theme-neo-light/design-tokens/Semantic.scss +64 -0
- package/resources/scss/theme-neo-light/list/Base.scss +27 -6
- package/resources/scss/theme-neo-light/tab/header/Button.scss +1 -1
- package/src/DefaultConfig.mjs +2 -2
- package/src/component/StatusBadge.mjs +194 -246
- package/src/component/Video.mjs +19 -25
- package/src/controller/Base.mjs +33 -26
- package/src/core/Base.mjs +2 -2
- package/src/data/connection/Xhr.mjs +1 -1
- package/src/form/field/TextArea.mjs +3 -3
- package/src/main/DomAccess.mjs +64 -70
- package/src/main/DomEvents.mjs +1 -1
- package/src/main/addon/HighlightJS.mjs +16 -1
- package/src/main/addon/Mwc.mjs +6 -1
- package/src/worker/Manager.mjs +8 -3
- package/examples/container/dialog/MainContainer.mjs +0 -68
- package/examples/container/dialog/MainContainerController.mjs +0 -84
- package/examples/container/dialog/app.mjs +0 -6
- package/examples/container/dialog/index.html +0 -11
- package/examples/container/dialog/neo-config.json +0 -7
- package/src/container/Dialog.mjs +0 -205
- package/src/main/addon/Dialog.mjs +0 -68
@@ -0,0 +1,288 @@
|
|
1
|
+
{
|
2
|
+
"cmp": {
|
3
|
+
"sidenav": {
|
4
|
+
"chapter": {
|
5
|
+
"height": {
|
6
|
+
"value": "{sem.height.xlarge}",
|
7
|
+
"type": "sizing"
|
8
|
+
},
|
9
|
+
"gap": {
|
10
|
+
"value": "{sem.spacing.small}",
|
11
|
+
"type": "spacing"
|
12
|
+
},
|
13
|
+
"fg": {
|
14
|
+
"default": {
|
15
|
+
"value": "{sem.color.fg.neutral.default}",
|
16
|
+
"type": "color"
|
17
|
+
},
|
18
|
+
"disabled": {
|
19
|
+
"value": "{sem.color.fg.neutral.disabled}",
|
20
|
+
"type": "color"
|
21
|
+
}
|
22
|
+
},
|
23
|
+
"bg": {
|
24
|
+
"default": {
|
25
|
+
"value": "transparent",
|
26
|
+
"type": "color"
|
27
|
+
},
|
28
|
+
"hover": {
|
29
|
+
"value": "{sem.color.bg.neutral.hover}",
|
30
|
+
"type": "color"
|
31
|
+
},
|
32
|
+
"active": {
|
33
|
+
"value": "{sem.color.bg.neutral.active}",
|
34
|
+
"type": "color"
|
35
|
+
},
|
36
|
+
"selected": {
|
37
|
+
"value": "{sem.color.bg.primary.background}",
|
38
|
+
"type": "color"
|
39
|
+
}
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"item": {
|
43
|
+
"gap": {
|
44
|
+
"value": "{sem.spacing.small}",
|
45
|
+
"type": "spacing"
|
46
|
+
},
|
47
|
+
"spacex": {
|
48
|
+
"value": "{sem.spacing.medium}",
|
49
|
+
"type": "spacing"
|
50
|
+
},
|
51
|
+
"height": {
|
52
|
+
"value": "{sem.height.xlarge}",
|
53
|
+
"type": "sizing"
|
54
|
+
},
|
55
|
+
"fg": {
|
56
|
+
"default": {
|
57
|
+
"value": "{sem.color.fg.neutral.default}",
|
58
|
+
"type": "color"
|
59
|
+
},
|
60
|
+
"disabled": {
|
61
|
+
"value": "{sem.color.fg.neutral.disabled}",
|
62
|
+
"type": "color"
|
63
|
+
}
|
64
|
+
},
|
65
|
+
"bg": {
|
66
|
+
"default": {
|
67
|
+
"value": "transparent",
|
68
|
+
"type": "color"
|
69
|
+
},
|
70
|
+
"hover": {
|
71
|
+
"value": "{sem.color.bg.neutral.hover}",
|
72
|
+
"type": "color"
|
73
|
+
},
|
74
|
+
"pressed": {
|
75
|
+
"value": "{sem.color.bg.neutral.active}",
|
76
|
+
"type": "color"
|
77
|
+
},
|
78
|
+
"selected": {
|
79
|
+
"value": "{sem.color.bg.primary.background}",
|
80
|
+
"type": "color"
|
81
|
+
}
|
82
|
+
},
|
83
|
+
"borderradius": {
|
84
|
+
"value": "{sem.borderradius.large}",
|
85
|
+
"type": "borderRadius"
|
86
|
+
}
|
87
|
+
},
|
88
|
+
"spacex": {
|
89
|
+
"value": "{sem.spacing.medium}",
|
90
|
+
"type": "spacing"
|
91
|
+
},
|
92
|
+
"spacey": {
|
93
|
+
"value": "{sem.spacing.xsmall}",
|
94
|
+
"type": "spacing"
|
95
|
+
},
|
96
|
+
"gap": {
|
97
|
+
"value": "{sem.spacing.xsmall}",
|
98
|
+
"type": "spacing"
|
99
|
+
},
|
100
|
+
"borderradius": {
|
101
|
+
"value": "{sem.borderradius.large}",
|
102
|
+
"type": "borderRadius"
|
103
|
+
}
|
104
|
+
},
|
105
|
+
"button": {
|
106
|
+
"primary": {
|
107
|
+
"bg": {
|
108
|
+
"default": {
|
109
|
+
"value": "{sem.color.bg.primary.default}",
|
110
|
+
"type": "color"
|
111
|
+
},
|
112
|
+
"hover": {
|
113
|
+
"value": "{sem.color.bg.primary.hover}",
|
114
|
+
"type": "color"
|
115
|
+
},
|
116
|
+
"active": {
|
117
|
+
"value": "{sem.color.bg.primary.active}",
|
118
|
+
"type": "color"
|
119
|
+
},
|
120
|
+
"disabled": {
|
121
|
+
"value": "{sem.color.bg.primary.disabled}",
|
122
|
+
"type": "color"
|
123
|
+
},
|
124
|
+
"loading": {
|
125
|
+
"value": "{sem.color.bg.primary.background}",
|
126
|
+
"type": "color"
|
127
|
+
}
|
128
|
+
},
|
129
|
+
"fg": {
|
130
|
+
"default": {
|
131
|
+
"value": "{sem.color.fg.neutral.contrast}",
|
132
|
+
"type": "color"
|
133
|
+
},
|
134
|
+
"disabled": {
|
135
|
+
"value": "{sem.color.fg.neutral.disabled}",
|
136
|
+
"type": "color"
|
137
|
+
}
|
138
|
+
}
|
139
|
+
},
|
140
|
+
"secondary": {
|
141
|
+
"bg": {
|
142
|
+
"default": {
|
143
|
+
"value": "transparent",
|
144
|
+
"type": "color"
|
145
|
+
},
|
146
|
+
"hover": {
|
147
|
+
"value": "{sem.color.bg.neutral.hover}",
|
148
|
+
"type": "color"
|
149
|
+
},
|
150
|
+
"active": {
|
151
|
+
"value": "{sem.color.bg.neutral.active}",
|
152
|
+
"type": "color"
|
153
|
+
},
|
154
|
+
"disabled": {
|
155
|
+
"value": "transparent",
|
156
|
+
"type": "color"
|
157
|
+
},
|
158
|
+
"loading": {
|
159
|
+
"value": "{sem.color.bg.neutral.default}",
|
160
|
+
"type": "color"
|
161
|
+
}
|
162
|
+
},
|
163
|
+
"text": {
|
164
|
+
"default": {
|
165
|
+
"value": "{sem.color.fg.neutral.default}",
|
166
|
+
"type": "color"
|
167
|
+
},
|
168
|
+
"disabled": {
|
169
|
+
"value": "{sem.color.fg.neutral.disabled}",
|
170
|
+
"type": "color"
|
171
|
+
}
|
172
|
+
},
|
173
|
+
"border": {
|
174
|
+
"default": {
|
175
|
+
"value": {
|
176
|
+
"width": "1px",
|
177
|
+
"style": "solid",
|
178
|
+
"color": "{sem.color.border.default}"
|
179
|
+
},
|
180
|
+
"type": "border"
|
181
|
+
},
|
182
|
+
"disabled": {
|
183
|
+
"value": {
|
184
|
+
"color": "{sem.color.border.subtle}",
|
185
|
+
"width": "1px",
|
186
|
+
"style": "solid"
|
187
|
+
},
|
188
|
+
"type": "border"
|
189
|
+
}
|
190
|
+
}
|
191
|
+
},
|
192
|
+
"tertiary": {
|
193
|
+
"default": {
|
194
|
+
"value": "{sem.color.fg.neutral.contrast}",
|
195
|
+
"type": "color"
|
196
|
+
},
|
197
|
+
"disabled": {
|
198
|
+
"value": "{sem.color.fg.neutral.disabled}",
|
199
|
+
"type": "color"
|
200
|
+
}
|
201
|
+
},
|
202
|
+
"ghost": {
|
203
|
+
"bg": {
|
204
|
+
"default": {
|
205
|
+
"value": "transparent",
|
206
|
+
"type": "color"
|
207
|
+
},
|
208
|
+
"hover": {
|
209
|
+
"value": "{sem.color.bg.neutral.hover}",
|
210
|
+
"type": "color"
|
211
|
+
},
|
212
|
+
"active": {
|
213
|
+
"value": "{sem.color.bg.neutral.active}",
|
214
|
+
"type": "color"
|
215
|
+
},
|
216
|
+
"disabled": {
|
217
|
+
"value": "{sem.color.bg.neutral.disabled}",
|
218
|
+
"type": "color"
|
219
|
+
},
|
220
|
+
"loading": {
|
221
|
+
"value": "{sem.color.bg.neutral.hover}",
|
222
|
+
"type": "color"
|
223
|
+
}
|
224
|
+
},
|
225
|
+
"fg": {
|
226
|
+
"default": {
|
227
|
+
"value": "{sem.color.fg.neutral.contrast}",
|
228
|
+
"type": "color"
|
229
|
+
},
|
230
|
+
"disabled": {
|
231
|
+
"value": "{sem.color.fg.neutral.disabled}",
|
232
|
+
"type": "color"
|
233
|
+
}
|
234
|
+
}
|
235
|
+
},
|
236
|
+
"borderradius": {
|
237
|
+
"value": "{sem.borderradius.large}",
|
238
|
+
"type": "borderRadius"
|
239
|
+
},
|
240
|
+
"height": {
|
241
|
+
"value": "{height.48}",
|
242
|
+
"type": "sizing"
|
243
|
+
},
|
244
|
+
"spacinghorizontal": {
|
245
|
+
"value": "{sem.spacing.medium}",
|
246
|
+
"type": "spacing"
|
247
|
+
},
|
248
|
+
"gap": {
|
249
|
+
"value": "{sem.spacing.xxsmall}",
|
250
|
+
"type": "spacing"
|
251
|
+
},
|
252
|
+
"borderwidth": {
|
253
|
+
"value": "1px",
|
254
|
+
"type": "borderWidth"
|
255
|
+
}
|
256
|
+
},
|
257
|
+
"breadcrumb": {
|
258
|
+
"pagelevel": {
|
259
|
+
"value": "{sem.color.fg.neutral.default}",
|
260
|
+
"type": "color"
|
261
|
+
},
|
262
|
+
"arrow": {
|
263
|
+
"value": "{sem.color.fg.neutral.default}",
|
264
|
+
"type": "color"
|
265
|
+
},
|
266
|
+
"currentpage": {
|
267
|
+
"value": "{sem.color.fg.primary.base}",
|
268
|
+
"type": "color"
|
269
|
+
},
|
270
|
+
"gap": {
|
271
|
+
"value": "{sem.spacing.xxsmall}",
|
272
|
+
"type": "spacing"
|
273
|
+
}
|
274
|
+
},
|
275
|
+
"tab": {
|
276
|
+
"foreground": {
|
277
|
+
"default": {
|
278
|
+
"value": "{sem.color.fg.neutral.default}",
|
279
|
+
"type": "color"
|
280
|
+
}
|
281
|
+
},
|
282
|
+
"height": {
|
283
|
+
"value": "{sem.height.xlarge}",
|
284
|
+
"type": "sizing"
|
285
|
+
}
|
286
|
+
}
|
287
|
+
}
|
288
|
+
}
|
@@ -0,0 +1,352 @@
|
|
1
|
+
{
|
2
|
+
"green": {
|
3
|
+
"100": {
|
4
|
+
"value": "{green.500}",
|
5
|
+
"type": "color",
|
6
|
+
"$extensions": {
|
7
|
+
"studio.tokens": {
|
8
|
+
"modify": {
|
9
|
+
"type": "lighten",
|
10
|
+
"value": "0.7",
|
11
|
+
"space": "hsl"
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"200": {
|
17
|
+
"value": "{green.500}",
|
18
|
+
"type": "color",
|
19
|
+
"$extensions": {
|
20
|
+
"studio.tokens": {
|
21
|
+
"modify": {
|
22
|
+
"type": "lighten",
|
23
|
+
"value": "0.5",
|
24
|
+
"space": "hsl"
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
},
|
29
|
+
"300": {
|
30
|
+
"value": "{green.500}",
|
31
|
+
"type": "color",
|
32
|
+
"$extensions": {
|
33
|
+
"studio.tokens": {
|
34
|
+
"modify": {
|
35
|
+
"type": "lighten",
|
36
|
+
"value": "0.2",
|
37
|
+
"space": "hsl"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
},
|
42
|
+
"400": {
|
43
|
+
"value": "{green.500}",
|
44
|
+
"type": "color",
|
45
|
+
"$extensions": {
|
46
|
+
"studio.tokens": {
|
47
|
+
"modify": {
|
48
|
+
"type": "lighten",
|
49
|
+
"value": "0.1",
|
50
|
+
"space": "hsl"
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
},
|
55
|
+
"500": {
|
56
|
+
"value": "#29F5AA",
|
57
|
+
"type": "color"
|
58
|
+
},
|
59
|
+
"600": {
|
60
|
+
"value": "{green.500}",
|
61
|
+
"type": "color",
|
62
|
+
"$extensions": {
|
63
|
+
"studio.tokens": {
|
64
|
+
"modify": {
|
65
|
+
"type": "darken",
|
66
|
+
"value": "0.1",
|
67
|
+
"space": "hsl"
|
68
|
+
}
|
69
|
+
}
|
70
|
+
}
|
71
|
+
},
|
72
|
+
"700": {
|
73
|
+
"value": "{green.500}",
|
74
|
+
"type": "color",
|
75
|
+
"$extensions": {
|
76
|
+
"studio.tokens": {
|
77
|
+
"modify": {
|
78
|
+
"type": "darken",
|
79
|
+
"value": "0.2",
|
80
|
+
"space": "hsl"
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
},
|
85
|
+
"800": {
|
86
|
+
"value": "{green.500}",
|
87
|
+
"type": "color",
|
88
|
+
"$extensions": {
|
89
|
+
"studio.tokens": {
|
90
|
+
"modify": {
|
91
|
+
"type": "darken",
|
92
|
+
"value": "0.4",
|
93
|
+
"space": "hsl"
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
},
|
98
|
+
"900": {
|
99
|
+
"value": "{green.500}",
|
100
|
+
"type": "color",
|
101
|
+
"$extensions": {
|
102
|
+
"studio.tokens": {
|
103
|
+
"modify": {
|
104
|
+
"type": "darken",
|
105
|
+
"value": "0.6",
|
106
|
+
"space": "hsl"
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
},
|
112
|
+
"spacing": {
|
113
|
+
"2": {
|
114
|
+
"value": "2",
|
115
|
+
"type": "spacing"
|
116
|
+
},
|
117
|
+
"4": {
|
118
|
+
"value": "4",
|
119
|
+
"type": "spacing"
|
120
|
+
},
|
121
|
+
"8": {
|
122
|
+
"value": "8",
|
123
|
+
"type": "spacing"
|
124
|
+
},
|
125
|
+
"12": {
|
126
|
+
"value": "12",
|
127
|
+
"type": "spacing"
|
128
|
+
},
|
129
|
+
"16": {
|
130
|
+
"value": "16",
|
131
|
+
"type": "spacing"
|
132
|
+
},
|
133
|
+
"20": {
|
134
|
+
"value": "20",
|
135
|
+
"type": "spacing"
|
136
|
+
},
|
137
|
+
"24": {
|
138
|
+
"value": "24",
|
139
|
+
"type": "spacing"
|
140
|
+
},
|
141
|
+
"32": {
|
142
|
+
"value": "32",
|
143
|
+
"type": "spacing"
|
144
|
+
},
|
145
|
+
"40": {
|
146
|
+
"value": "40",
|
147
|
+
"type": "spacing"
|
148
|
+
},
|
149
|
+
"48": {
|
150
|
+
"value": "48",
|
151
|
+
"type": "spacing"
|
152
|
+
},
|
153
|
+
"64": {
|
154
|
+
"value": "64",
|
155
|
+
"type": "spacing"
|
156
|
+
},
|
157
|
+
"80": {
|
158
|
+
"value": "80",
|
159
|
+
"type": "spacing"
|
160
|
+
},
|
161
|
+
"96": {
|
162
|
+
"value": "96",
|
163
|
+
"type": "spacing"
|
164
|
+
}
|
165
|
+
},
|
166
|
+
"gray": {
|
167
|
+
"50": {
|
168
|
+
"value": "#fafafa",
|
169
|
+
"type": "color"
|
170
|
+
},
|
171
|
+
"100": {
|
172
|
+
"value": "#F0F2F0",
|
173
|
+
"type": "color"
|
174
|
+
},
|
175
|
+
"200": {
|
176
|
+
"value": "#D3D7D2",
|
177
|
+
"type": "color"
|
178
|
+
},
|
179
|
+
"300": {
|
180
|
+
"value": "#B6BDB4",
|
181
|
+
"type": "color"
|
182
|
+
},
|
183
|
+
"400": {
|
184
|
+
"value": "#99A295",
|
185
|
+
"type": "color"
|
186
|
+
},
|
187
|
+
"500": {
|
188
|
+
"value": "#7C8877",
|
189
|
+
"type": "color"
|
190
|
+
},
|
191
|
+
"600": {
|
192
|
+
"value": "#606A5D",
|
193
|
+
"type": "color"
|
194
|
+
},
|
195
|
+
"700": {
|
196
|
+
"value": "#454B42",
|
197
|
+
"type": "color"
|
198
|
+
},
|
199
|
+
"800": {
|
200
|
+
"value": "#292D28",
|
201
|
+
"type": "color"
|
202
|
+
},
|
203
|
+
"900": {
|
204
|
+
"value": "#0E0F0D",
|
205
|
+
"type": "color"
|
206
|
+
}
|
207
|
+
},
|
208
|
+
"borderradius": {
|
209
|
+
"0": {
|
210
|
+
"value": "0",
|
211
|
+
"type": "borderRadius"
|
212
|
+
},
|
213
|
+
"4": {
|
214
|
+
"value": "4",
|
215
|
+
"type": "borderRadius"
|
216
|
+
},
|
217
|
+
"8": {
|
218
|
+
"value": "8",
|
219
|
+
"type": "borderRadius"
|
220
|
+
}
|
221
|
+
},
|
222
|
+
"white": {
|
223
|
+
"value": "#FFFFFF",
|
224
|
+
"type": "color"
|
225
|
+
},
|
226
|
+
"black": {
|
227
|
+
"value": "#000000",
|
228
|
+
"type": "color"
|
229
|
+
},
|
230
|
+
"height": {
|
231
|
+
"2": {
|
232
|
+
"value": "2",
|
233
|
+
"type": "sizing"
|
234
|
+
},
|
235
|
+
"4": {
|
236
|
+
"value": "4",
|
237
|
+
"type": "sizing"
|
238
|
+
},
|
239
|
+
"8": {
|
240
|
+
"value": "8",
|
241
|
+
"type": "sizing"
|
242
|
+
},
|
243
|
+
"16": {
|
244
|
+
"value": "16",
|
245
|
+
"type": "sizing"
|
246
|
+
},
|
247
|
+
"32": {
|
248
|
+
"value": "32",
|
249
|
+
"type": "sizing"
|
250
|
+
},
|
251
|
+
"48": {
|
252
|
+
"value": "48",
|
253
|
+
"type": "sizing"
|
254
|
+
}
|
255
|
+
},
|
256
|
+
"Transparent": {
|
257
|
+
"value": "rgba(255,255,255,0)",
|
258
|
+
"type": "color"
|
259
|
+
},
|
260
|
+
"purple": {
|
261
|
+
"100": {
|
262
|
+
"value": "#efe3ff",
|
263
|
+
"type": "color"
|
264
|
+
},
|
265
|
+
"200": {
|
266
|
+
"value": "#d0aaff",
|
267
|
+
"type": "color"
|
268
|
+
},
|
269
|
+
"300": {
|
270
|
+
"value": "#b071ff",
|
271
|
+
"type": "color"
|
272
|
+
},
|
273
|
+
"400": {
|
274
|
+
"value": "#9039ff",
|
275
|
+
"type": "color"
|
276
|
+
},
|
277
|
+
"500": {
|
278
|
+
"value": "#7100ff",
|
279
|
+
"type": "color"
|
280
|
+
},
|
281
|
+
"600": {
|
282
|
+
"value": "#5800c6",
|
283
|
+
"type": "color"
|
284
|
+
},
|
285
|
+
"700": {
|
286
|
+
"value": "#3f008e",
|
287
|
+
"type": "color"
|
288
|
+
},
|
289
|
+
"800": {
|
290
|
+
"value": "#260055",
|
291
|
+
"type": "color"
|
292
|
+
},
|
293
|
+
"900": {
|
294
|
+
"value": "#0d001c",
|
295
|
+
"type": "color"
|
296
|
+
}
|
297
|
+
},
|
298
|
+
"core": {
|
299
|
+
"fontfamily": {
|
300
|
+
"mono": {
|
301
|
+
"value": "Source Code Pro",
|
302
|
+
"type": "fontFamilies"
|
303
|
+
},
|
304
|
+
"sans": {
|
305
|
+
"value": "Source Sans Pro",
|
306
|
+
"type": "fontFamilies"
|
307
|
+
},
|
308
|
+
"serif": {
|
309
|
+
"value": "Source Serif Pro",
|
310
|
+
"type": "fontFamilies"
|
311
|
+
}
|
312
|
+
},
|
313
|
+
"fontsize": {
|
314
|
+
"body": {
|
315
|
+
"value": "18px",
|
316
|
+
"type": "fontSizes"
|
317
|
+
},
|
318
|
+
"h1": {
|
319
|
+
"value": "2.5rem",
|
320
|
+
"type": "fontSizes"
|
321
|
+
},
|
322
|
+
"h2": {
|
323
|
+
"value": "1.75rem",
|
324
|
+
"type": "fontSizes"
|
325
|
+
}
|
326
|
+
},
|
327
|
+
"fontweight": {
|
328
|
+
"regular": {
|
329
|
+
"value": "400",
|
330
|
+
"type": "fontWeights"
|
331
|
+
},
|
332
|
+
"semibold": {
|
333
|
+
"value": "600",
|
334
|
+
"type": "fontWeights"
|
335
|
+
},
|
336
|
+
"bold": {
|
337
|
+
"value": "700",
|
338
|
+
"type": "fontWeights"
|
339
|
+
}
|
340
|
+
},
|
341
|
+
"lineheight": {
|
342
|
+
"headline": {
|
343
|
+
"value": "1.2",
|
344
|
+
"type": "lineHeights"
|
345
|
+
},
|
346
|
+
"paragraph": {
|
347
|
+
"value": "1.5",
|
348
|
+
"type": "lineHeights"
|
349
|
+
}
|
350
|
+
}
|
351
|
+
}
|
352
|
+
}
|