@octaviaflow/themes 1.0.1

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 (46) hide show
  1. package/README.md +122 -0
  2. package/docs/sass.md +189 -0
  3. package/index.scss +11 -0
  4. package/lib/index.js +5634 -0
  5. package/package.json +49 -0
  6. package/scss/_component-tokens.scss +10 -0
  7. package/scss/_config.scss +11 -0
  8. package/scss/_theme.scss +120 -0
  9. package/scss/_themes.scss +8 -0
  10. package/scss/_tokens.scss +8 -0
  11. package/scss/_utilities.scss +18 -0
  12. package/scss/compat/_themes.scss +8 -0
  13. package/scss/compat/_tokens.scss +8 -0
  14. package/scss/compat/generated/_themes.scss +271 -0
  15. package/scss/compat/generated/_tokens.scss +206 -0
  16. package/src/component-tokens/button/index.js +10 -0
  17. package/src/component-tokens/button/tokens.js +132 -0
  18. package/src/component-tokens/notification/index.js +10 -0
  19. package/src/component-tokens/notification/tokens.js +107 -0
  20. package/src/component-tokens/tag/index.js +10 -0
  21. package/src/component-tokens/tag/tokens.js +362 -0
  22. package/src/g10.js +346 -0
  23. package/src/g100.js +349 -0
  24. package/src/g90.js +350 -0
  25. package/src/index.js +42 -0
  26. package/src/tokens/Token.js +37 -0
  27. package/src/tokens/TokenFormat.js +91 -0
  28. package/src/tokens/TokenGroup.js +164 -0
  29. package/src/tokens/TokenSet.js +80 -0
  30. package/src/tokens/components.js +97 -0
  31. package/src/tokens/index.js +71 -0
  32. package/src/tokens/layout.js +42 -0
  33. package/src/tokens/type.js +52 -0
  34. package/src/tokens/v10.js +191 -0
  35. package/src/tokens/v11TokenGroup.js +436 -0
  36. package/src/tokens/v11TokenSet.js +94 -0
  37. package/src/tools.js +80 -0
  38. package/src/v10/g10.js +352 -0
  39. package/src/v10/g100.js +351 -0
  40. package/src/v10/g90.js +353 -0
  41. package/src/v10/index.js +25 -0
  42. package/src/v10/metadata.yml +217 -0
  43. package/src/v10/tokens.js +400 -0
  44. package/src/v10/white.js +355 -0
  45. package/src/white.js +349 -0
  46. package/telemetry.yml +17 -0
package/src/g100.js ADDED
@@ -0,0 +1,349 @@
1
+ /**
2
+ * Copyright OctaviaFlow
3
+ * Author: Vishal Kumar
4
+ * Created: 11/November/2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+
10
+
11
+ import {
12
+ // Blue
13
+ blue40,
14
+ blue60,
15
+ blue70,
16
+ blue90,
17
+
18
+ // Gray
19
+ gray10,
20
+ gray10Hover,
21
+ gray30,
22
+ gray40,
23
+ gray50,
24
+ gray60,
25
+ gray60Hover,
26
+ gray70,
27
+ gray70Hover,
28
+ gray80,
29
+ gray80Hover,
30
+ gray90,
31
+ gray90Hover,
32
+ gray100,
33
+
34
+ // Support
35
+ blue30,
36
+ blue50,
37
+ green40,
38
+ green50,
39
+ yellow30,
40
+ orange40,
41
+ red40,
42
+ red50,
43
+ red60,
44
+ purple40,
45
+ purple50,
46
+ purple60,
47
+
48
+ // Constants
49
+ white,
50
+ black,
51
+
52
+ // Tools
53
+ rgba,
54
+ } from '@octaviaflow/colors';
55
+ import { adjustLightness, adjustAlpha } from './tools';
56
+
57
+ // Background
58
+ export const background = gray100;
59
+ export const backgroundInverse = gray10;
60
+ export const backgroundBrand = blue60;
61
+ export const backgroundActive = adjustAlpha(gray50, 0.4);
62
+ export const backgroundHover = adjustAlpha(gray50, 0.16);
63
+ export const backgroundInverseHover = gray10Hover;
64
+ export const backgroundSelected = adjustAlpha(gray50, 0.24);
65
+ export const backgroundSelectedHover = adjustAlpha(gray50, 0.32);
66
+
67
+ // Layer
68
+ // layer-01
69
+ export const layer01 = gray90;
70
+ export const layerActive01 = gray70;
71
+ export const layerHover01 = gray90Hover;
72
+ export const layerSelected01 = gray80;
73
+ export const layerSelectedHover01 = gray80Hover;
74
+
75
+ // layer-02
76
+ export const layer02 = gray80;
77
+ export const layerActive02 = gray60;
78
+ export const layerHover02 = gray80Hover;
79
+ export const layerSelected02 = gray70;
80
+ export const layerSelectedHover02 = gray70Hover;
81
+
82
+ // layer-03
83
+ export const layer03 = gray70;
84
+ export const layerActive03 = gray50;
85
+ export const layerHover03 = gray70Hover;
86
+ export const layerSelected03 = gray60;
87
+ export const layerSelectedHover03 = gray60Hover;
88
+
89
+ // layer
90
+ export const layerSelectedInverse = gray10;
91
+ export const layerSelectedDisabled = gray40;
92
+
93
+ // layer-accent-01
94
+ export const layerAccent01 = gray80;
95
+ export const layerAccentActive01 = gray60;
96
+ export const layerAccentHover01 = gray80Hover;
97
+
98
+ // layer-accent-02
99
+ export const layerAccent02 = gray70;
100
+ export const layerAccentActive02 = gray50;
101
+ export const layerAccentHover02 = gray70Hover;
102
+
103
+ // layer-accent-03
104
+ export const layerAccent03 = gray60;
105
+ export const layerAccentActive03 = gray80;
106
+ export const layerAccentHover03 = gray60Hover;
107
+
108
+ // Field
109
+ // field-01
110
+ export const field01 = gray90;
111
+ export const fieldHover01 = gray90Hover;
112
+
113
+ // field-02
114
+ export const field02 = gray80;
115
+ export const fieldHover02 = gray80Hover;
116
+
117
+ // field-03
118
+ export const field03 = gray70;
119
+ export const fieldHover03 = gray70Hover;
120
+
121
+ // Border
122
+ // border-subtle-00
123
+ export const borderSubtle00 = gray80;
124
+
125
+ // border-subtle-01
126
+ export const borderSubtle01 = gray70;
127
+ export const borderSubtleSelected01 = gray60;
128
+
129
+ // border-subtle-02
130
+ export const borderSubtle02 = gray60;
131
+ export const borderSubtleSelected02 = gray50;
132
+
133
+ // border-subtle-03
134
+ export const borderSubtle03 = gray60;
135
+ export const borderSubtleSelected03 = gray50;
136
+
137
+ // border-strong
138
+ export const borderStrong01 = gray60;
139
+ export const borderStrong02 = gray50;
140
+ export const borderStrong03 = gray40;
141
+
142
+ // border-tile
143
+ export const borderTile01 = gray70;
144
+ export const borderTile02 = gray60;
145
+ export const borderTile03 = gray50;
146
+
147
+ // border-inverse
148
+ export const borderInverse = gray10;
149
+
150
+ // border-interactive
151
+ export const borderInteractive = blue50;
152
+
153
+ // border
154
+ export const borderDisabled = adjustAlpha(gray50, 0.5);
155
+
156
+ // Text
157
+ export const textPrimary = gray10;
158
+ export const textSecondary = gray30;
159
+ export const textPlaceholder = adjustAlpha(textPrimary, 0.4);
160
+ export const textHelper = gray40;
161
+ export const textError = red40;
162
+ export const textInverse = gray100;
163
+ export const textOnColor = white;
164
+ export const textOnColorDisabled = adjustAlpha(textOnColor, 0.25);
165
+ export const textDisabled = adjustAlpha(textPrimary, 0.25);
166
+
167
+ // Link
168
+ export const linkPrimary = blue40;
169
+ export const linkPrimaryHover = blue30;
170
+ export const linkSecondary = blue30;
171
+ export const linkInverse = blue60;
172
+ export const linkVisited = purple40;
173
+ export const linkInverseVisited = purple60;
174
+ export const linkInverseActive = gray100;
175
+ export const linkInverseHover = blue70;
176
+
177
+ // Icon
178
+ export const iconPrimary = gray10;
179
+ export const iconSecondary = gray30;
180
+ export const iconInverse = gray100;
181
+ export const iconOnColor = white;
182
+ export const iconOnColorDisabled = adjustAlpha(iconOnColor, 0.25);
183
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
184
+ export const iconInteractive = white;
185
+
186
+ // Support
187
+ export const supportError = red50;
188
+ export const supportSuccess = green40;
189
+ export const supportWarning = yellow30;
190
+ export const supportInfo = blue50;
191
+ export const supportErrorInverse = red60;
192
+ export const supportSuccessInverse = green50;
193
+ export const supportWarningInverse = yellow30;
194
+ export const supportInfoInverse = blue70;
195
+ export const supportCautionMinor = yellow30;
196
+ export const supportCautionMajor = orange40;
197
+ export const supportCautionUndefined = purple50;
198
+
199
+ // Focus
200
+ export const focus = white;
201
+ export const focusInset = gray100;
202
+ export const focusInverse = blue60;
203
+
204
+ // Skeleton
205
+ export const skeletonBackground = adjustLightness(background, 7);
206
+ export const skeletonElement = gray80;
207
+
208
+ // Misc
209
+ export const interactive = blue50;
210
+ export const highlight = blue90;
211
+ export const overlay = rgba(black, 0.65);
212
+ export const toggleOff = gray60;
213
+ export const shadow = rgba(black, 0.8);
214
+
215
+ //// AI - Experimental (Use at your own risk)
216
+ //// Phase 2 - new \\\\
217
+ // Shared
218
+ export const aiInnerShadow = rgba(blue50, 0.16);
219
+ export const aiAuraStartSm = rgba(blue50, 0.16);
220
+ export const aiAuraStart = rgba(blue50, 0.1);
221
+ export const aiAuraEnd = rgba(black, 0);
222
+ export const aiBorderStrong = blue40;
223
+ export const aiBorderStart = rgba(blue30, 0.36);
224
+ export const aiBorderEnd = blue50;
225
+ export const aiDropShadow = rgba(black, 0.28);
226
+ export const aiAuraHoverBackground = layerHover01;
227
+ export const aiAuraHoverStart = rgba(blue50, 0.4);
228
+ export const aiAuraHoverEnd = rgba(black, 0);
229
+
230
+ // AI Popover
231
+ export const aiPopoverBackground = gray100;
232
+ export const aiPopoverShadowOuter01 = rgba(black, 0.12);
233
+ export const aiPopoverShadowOuter02 = rgba(black, 0.08);
234
+
235
+ // AI skeleton
236
+ export const aiSkeletonBackground = rgba(blue40, 0.5);
237
+ export const aiSkeletonElementBackground = rgba(blue40, 0.3);
238
+
239
+ // AI Modal tokens
240
+ export const aiOverlay = rgba(black, 0.5);
241
+
242
+ // One off tokens for caret
243
+ export const aiPopoverCaretCenter = '#4870B5';
244
+ export const aiPopoverCaretBottom = blue50;
245
+ export const aiPopoverCaretBottomBackgroundActions = '#1E283A';
246
+ export const aiPopoverCaretBottomBackground = '#202D45';
247
+
248
+ // Chat tokens
249
+ export const chatPromptBackground = gray100;
250
+ export const chatPromptBorderStart = gray90;
251
+ export const chatPromptBorderEnd = rgba(gray90, 0);
252
+ export const chatBubbleUser = gray80;
253
+ export const chatBubbleAgent = gray90;
254
+ export const chatBubbleBorder = gray70;
255
+ export const chatAvatarBot = gray50;
256
+ export const chatAvatarAgent = gray30;
257
+ export const chatAvatarUser = blue50;
258
+ export const chatShellBackground = gray90;
259
+ export const chatHeaderBackground = gray90;
260
+
261
+ // Chat button tokens
262
+ export const chatButton = linkPrimary;
263
+ export const chatButtonHover = backgroundHover;
264
+ export const chatButtonTextHover = linkPrimaryHover;
265
+ export const chatButtonActive = backgroundActive;
266
+ export const chatButtonSelected = backgroundSelected;
267
+ export const chatButtonTextSelected = textSecondary;
268
+
269
+ export {
270
+ // Type
271
+ caption01,
272
+ caption02,
273
+ label01,
274
+ label02,
275
+ helperText01,
276
+ helperText02,
277
+ bodyShort01,
278
+ bodyLong01,
279
+ bodyShort02,
280
+ bodyLong02,
281
+ code01,
282
+ code02,
283
+ heading01,
284
+ productiveHeading01,
285
+ heading02,
286
+ productiveHeading02,
287
+ productiveHeading03,
288
+ productiveHeading04,
289
+ productiveHeading05,
290
+ productiveHeading06,
291
+ productiveHeading07,
292
+ expressiveHeading01,
293
+ expressiveHeading02,
294
+ expressiveHeading03,
295
+ expressiveHeading04,
296
+ expressiveHeading05,
297
+ expressiveHeading06,
298
+ expressiveParagraph01,
299
+ quotation01,
300
+ quotation02,
301
+ display01,
302
+ display02,
303
+ display03,
304
+ display04,
305
+ // Layout
306
+ // Spacing
307
+ spacing01,
308
+ spacing02,
309
+ spacing03,
310
+ spacing04,
311
+ spacing05,
312
+ spacing06,
313
+ spacing07,
314
+ spacing08,
315
+ spacing09,
316
+ spacing10,
317
+ spacing11,
318
+ spacing12,
319
+ spacing13,
320
+ // Fluid spacing
321
+ fluidSpacing01,
322
+ fluidSpacing02,
323
+ fluidSpacing03,
324
+ fluidSpacing04,
325
+ // Containers
326
+ container01,
327
+ container02,
328
+ container03,
329
+ container04,
330
+ container05,
331
+ sizeXSmall,
332
+ sizeSmall,
333
+ sizeMedium,
334
+ sizeLarge,
335
+ sizeXLarge,
336
+ size2XLarge,
337
+ // Icon sizes
338
+ iconSize01,
339
+ iconSize02,
340
+ // Layout
341
+ // Deprecated ☠️
342
+ layout01,
343
+ layout02,
344
+ layout03,
345
+ layout04,
346
+ layout05,
347
+ layout06,
348
+ layout07,
349
+ } from './white';
package/src/g90.js ADDED
@@ -0,0 +1,350 @@
1
+ /**
2
+ * Copyright OctaviaFlow
3
+ * Author: Vishal Kumar
4
+ * Created: 11/November/2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+
10
+
11
+ import {
12
+ // Blue
13
+ blue40,
14
+ blue60,
15
+ blue70,
16
+ blue80,
17
+
18
+ // Gray
19
+ gray10,
20
+ gray10Hover,
21
+ gray30,
22
+ gray40,
23
+ gray50,
24
+ gray50Hover,
25
+ gray60,
26
+ gray60Hover,
27
+ gray70,
28
+ gray70Hover,
29
+ gray80,
30
+ gray80Hover,
31
+ gray90,
32
+ gray90Hover,
33
+ gray100,
34
+
35
+ // Support
36
+ blue30,
37
+ blue50,
38
+ green40,
39
+ green50,
40
+ yellow30,
41
+ orange40,
42
+ red30,
43
+ red40,
44
+ red60,
45
+ purple40,
46
+ purple50,
47
+ purple60,
48
+
49
+ // Constants
50
+ white,
51
+ black,
52
+
53
+ // Tools
54
+ rgba,
55
+ } from '@octaviaflow/colors';
56
+ import { adjustAlpha } from './tools';
57
+
58
+ // Background
59
+ export const background = gray90;
60
+ export const backgroundInverse = gray10;
61
+ export const backgroundBrand = blue60;
62
+ export const backgroundActive = adjustAlpha(gray50, 0.4);
63
+ export const backgroundHover = adjustAlpha(gray50, 0.16);
64
+ export const backgroundInverseHover = gray10Hover;
65
+ export const backgroundSelected = adjustAlpha(gray50, 0.24);
66
+ export const backgroundSelectedHover = adjustAlpha(gray50, 0.32);
67
+
68
+ // Layer
69
+ // layer-01
70
+ export const layer01 = gray80;
71
+ export const layerActive01 = gray60;
72
+ export const layerHover01 = gray80Hover;
73
+ export const layerSelected01 = gray70;
74
+ export const layerSelectedHover01 = gray70Hover;
75
+
76
+ // layer-02
77
+ export const layer02 = gray70;
78
+ export const layerActive02 = gray50;
79
+ export const layerHover02 = gray70Hover;
80
+ export const layerSelected02 = gray60;
81
+ export const layerSelectedHover02 = gray60Hover;
82
+
83
+ // layer-03
84
+ export const layer03 = gray60;
85
+ export const layerActive03 = gray80;
86
+ export const layerHover03 = gray60Hover;
87
+ export const layerSelected03 = gray70;
88
+ export const layerSelectedHover03 = gray70Hover;
89
+
90
+ // layer
91
+ export const layerSelectedInverse = gray10;
92
+ export const layerSelectedDisabled = gray40;
93
+
94
+ // layer-accent-01
95
+ export const layerAccent01 = gray70;
96
+ export const layerAccentActive01 = gray50;
97
+ export const layerAccentHover01 = gray70Hover;
98
+
99
+ // layer-accent-02
100
+ export const layerAccent02 = gray60;
101
+ export const layerAccentActive02 = gray80;
102
+ export const layerAccentHover02 = gray60Hover;
103
+
104
+ // layer-accent-03
105
+ export const layerAccent03 = gray50;
106
+ export const layerAccentActive03 = gray70;
107
+ export const layerAccentHover03 = gray50Hover;
108
+
109
+ // Field
110
+ // field-01
111
+ export const field01 = gray80;
112
+ export const fieldHover01 = gray80Hover;
113
+
114
+ // field-02
115
+ export const field02 = gray70;
116
+ export const fieldHover02 = gray70Hover;
117
+
118
+ // field-03
119
+ export const field03 = gray60;
120
+ export const fieldHover03 = gray60Hover;
121
+
122
+ // Border
123
+ // border-subtle-00
124
+ export const borderSubtle00 = gray70;
125
+
126
+ // border-subtle-01
127
+ export const borderSubtle01 = gray60;
128
+ export const borderSubtleSelected01 = gray50;
129
+
130
+ // border-subtle-02
131
+ export const borderSubtle02 = gray50;
132
+ export const borderSubtleSelected02 = gray40;
133
+
134
+ // border-subtle-03
135
+ export const borderSubtle03 = gray50;
136
+ export const borderSubtleSelected03 = gray40;
137
+
138
+ // border-strong
139
+ export const borderStrong01 = gray50;
140
+ export const borderStrong02 = gray40;
141
+ export const borderStrong03 = gray30;
142
+
143
+ // border-tile
144
+ export const borderTile01 = gray60;
145
+ export const borderTile02 = gray50;
146
+ export const borderTile03 = gray40;
147
+
148
+ // border-inverse
149
+ export const borderInverse = gray10;
150
+
151
+ // border-interactive
152
+ export const borderInteractive = blue50;
153
+
154
+ // border
155
+ export const borderDisabled = adjustAlpha(gray50, 0.5);
156
+
157
+ // Text
158
+ export const textPrimary = gray10;
159
+ export const textSecondary = gray30;
160
+ export const textPlaceholder = adjustAlpha(textPrimary, 0.4);
161
+ export const textHelper = gray30;
162
+ export const textError = red30;
163
+ export const textInverse = gray100;
164
+ export const textOnColor = white;
165
+ export const textOnColorDisabled = adjustAlpha(textOnColor, 0.25);
166
+ export const textDisabled = adjustAlpha(textPrimary, 0.25);
167
+
168
+ // Link
169
+ export const linkPrimary = blue40;
170
+ export const linkPrimaryHover = blue30;
171
+ export const linkSecondary = blue30;
172
+ export const linkInverse = blue60;
173
+ export const linkVisited = purple40;
174
+ export const linkInverseVisited = purple60;
175
+ export const linkInverseActive = gray100;
176
+ export const linkInverseHover = blue70;
177
+
178
+ // Icon
179
+ export const iconPrimary = gray10;
180
+ export const iconSecondary = gray30;
181
+ export const iconInverse = gray100;
182
+ export const iconOnColor = white;
183
+ export const iconOnColorDisabled = adjustAlpha(iconOnColor, 0.25);
184
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
185
+ export const iconInteractive = white;
186
+
187
+ // Support
188
+ export const supportError = red40;
189
+ export const supportSuccess = green40;
190
+ export const supportWarning = yellow30;
191
+ export const supportInfo = blue50;
192
+ export const supportErrorInverse = red60;
193
+ export const supportSuccessInverse = green50;
194
+ export const supportWarningInverse = yellow30;
195
+ export const supportInfoInverse = blue70;
196
+ export const supportCautionMinor = yellow30;
197
+ export const supportCautionMajor = orange40;
198
+ export const supportCautionUndefined = purple50;
199
+
200
+ // Focus
201
+ export const focus = white;
202
+ export const focusInset = gray100;
203
+ export const focusInverse = blue60;
204
+
205
+ // Skeleton
206
+ export const skeletonBackground = gray90Hover;
207
+ export const skeletonElement = gray70;
208
+
209
+ // Misc
210
+ export const interactive = blue50;
211
+ export const highlight = blue80;
212
+ export const overlay = rgba(black, 0.65);
213
+ export const toggleOff = gray50;
214
+ export const shadow = rgba(black, 0.8);
215
+
216
+ //// AI - Experimental (Use at your own risk)
217
+ //// Phase 2 - new \\\\
218
+ // Shared
219
+ export const aiInnerShadow = rgba(blue50, 0.16);
220
+ export const aiAuraStartSm = rgba(blue50, 0.16);
221
+ export const aiAuraStart = rgba(blue50, 0.1);
222
+ export const aiAuraEnd = rgba(black, 0);
223
+ export const aiBorderStrong = blue40;
224
+ export const aiBorderStart = rgba(blue30, 0.36);
225
+ export const aiBorderEnd = blue50;
226
+ export const aiDropShadow = rgba(black, 0.28);
227
+ export const aiAuraHoverBackground = layerHover01;
228
+ export const aiAuraHoverStart = rgba(blue50, 0.4);
229
+ export const aiAuraHoverEnd = rgba(black, 0);
230
+
231
+ // AI Popover
232
+ export const aiPopoverBackground = gray100;
233
+ export const aiPopoverShadowOuter01 = rgba(black, 0.12);
234
+ export const aiPopoverShadowOuter02 = rgba(black, 0.08);
235
+
236
+ // AI skeleton
237
+ export const aiSkeletonBackground = rgba(blue40, 0.5);
238
+ export const aiSkeletonElementBackground = rgba(blue40, 0.3);
239
+
240
+ // AI Modal tokens
241
+ export const aiOverlay = rgba(black, 0.5);
242
+
243
+ // One off tokens for caret
244
+ export const aiPopoverCaretCenter = '#4870B5';
245
+ export const aiPopoverCaretBottom = blue50;
246
+ export const aiPopoverCaretBottomBackgroundActions = '#1E283A';
247
+ export const aiPopoverCaretBottomBackground = '#202D45';
248
+
249
+ // Chat tokens
250
+ export const chatPromptBackground = gray100;
251
+ export const chatPromptBorderStart = gray90;
252
+ export const chatPromptBorderEnd = rgba(gray90, 0);
253
+ export const chatBubbleUser = gray80;
254
+ export const chatBubbleAgent = gray90;
255
+ export const chatBubbleBorder = gray70;
256
+ export const chatAvatarBot = gray50;
257
+ export const chatAvatarAgent = gray30;
258
+ export const chatAvatarUser = blue50;
259
+ export const chatShellBackground = gray90;
260
+ export const chatHeaderBackground = gray90;
261
+
262
+ // Chat button tokens
263
+ export const chatButton = linkPrimary;
264
+ export const chatButtonHover = backgroundHover;
265
+ export const chatButtonTextHover = linkPrimaryHover;
266
+ export const chatButtonActive = backgroundActive;
267
+ export const chatButtonSelected = backgroundSelected;
268
+ export const chatButtonTextSelected = textSecondary;
269
+
270
+ export {
271
+ // Type
272
+ caption01,
273
+ caption02,
274
+ label01,
275
+ label02,
276
+ helperText01,
277
+ helperText02,
278
+ bodyShort01,
279
+ bodyLong01,
280
+ bodyShort02,
281
+ bodyLong02,
282
+ code01,
283
+ code02,
284
+ heading01,
285
+ productiveHeading01,
286
+ heading02,
287
+ productiveHeading02,
288
+ productiveHeading03,
289
+ productiveHeading04,
290
+ productiveHeading05,
291
+ productiveHeading06,
292
+ productiveHeading07,
293
+ expressiveHeading01,
294
+ expressiveHeading02,
295
+ expressiveHeading03,
296
+ expressiveHeading04,
297
+ expressiveHeading05,
298
+ expressiveHeading06,
299
+ expressiveParagraph01,
300
+ quotation01,
301
+ quotation02,
302
+ display01,
303
+ display02,
304
+ display03,
305
+ display04,
306
+ // Layout
307
+ // Spacing
308
+ spacing01,
309
+ spacing02,
310
+ spacing03,
311
+ spacing04,
312
+ spacing05,
313
+ spacing06,
314
+ spacing07,
315
+ spacing08,
316
+ spacing09,
317
+ spacing10,
318
+ spacing11,
319
+ spacing12,
320
+ spacing13,
321
+ // Fluid spacing
322
+ fluidSpacing01,
323
+ fluidSpacing02,
324
+ fluidSpacing03,
325
+ fluidSpacing04,
326
+ // Containers
327
+ container01,
328
+ container02,
329
+ container03,
330
+ container04,
331
+ container05,
332
+ sizeXSmall,
333
+ sizeSmall,
334
+ sizeMedium,
335
+ sizeLarge,
336
+ sizeXLarge,
337
+ size2XLarge,
338
+ // Icon sizes
339
+ iconSize01,
340
+ iconSize02,
341
+ // Layout
342
+ // Deprecated ☠️
343
+ layout01,
344
+ layout02,
345
+ layout03,
346
+ layout04,
347
+ layout05,
348
+ layout06,
349
+ layout07,
350
+ } from './white';