@ornikar/bumper 3.9.1 → 3.10.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.
- package/CHANGELOG.md +24 -0
- package/dist/definitions/shared/storybook/StorySection.d.ts.map +1 -1
- package/dist/definitions/shared/storybook/StoryTitle.d.ts.map +1 -1
- package/dist/definitions/system/actions/Button/Button.d.ts +4 -4
- package/dist/definitions/system/actions/Button/Button.d.ts.map +1 -1
- package/dist/definitions/system/actions/IconButton/IconButton.d.ts.map +1 -1
- package/dist/definitions/system/content/icon/Icon.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/Typography.d.ts +15 -10
- package/dist/definitions/system/content/typography/Typography.d.ts.map +1 -1
- package/dist/definitions/system/content/typography/TypographyLink.d.ts +1 -0
- package/dist/definitions/system/content/typography/TypographyLink.d.ts.map +1 -1
- package/dist/definitions/system/core/tokens/palettes/deepPurpleColorPalette.d.ts +70 -69
- package/dist/definitions/system/core/tokens/palettes/deepPurpleColorPalette.d.ts.map +1 -1
- package/dist/definitions/system/loading/loader/Loader.d.ts +2 -2
- package/dist/definitions/system/loading/loader/Loader.d.ts.map +1 -1
- package/dist/definitions/system/loading/loader/LoaderBackgroundCircle.d.ts +2 -1
- package/dist/definitions/system/loading/loader/LoaderBackgroundCircle.d.ts.map +1 -1
- package/dist/definitions/system/loading/loader/LoaderCircleWrapper.d.ts +2 -1
- package/dist/definitions/system/loading/loader/LoaderCircleWrapper.d.ts.map +1 -1
- package/dist/definitions/system/types.d.ts +38 -1
- package/dist/definitions/system/types.d.ts.map +1 -1
- package/dist/definitions/tamagui.config.d.ts +142 -2
- package/dist/definitions/tamagui.config.d.ts.map +1 -1
- package/dist/index-metro.es.android.js +86 -84
- package/dist/index-metro.es.android.js.map +1 -1
- package/dist/index-metro.es.ios.js +86 -84
- package/dist/index-metro.es.ios.js.map +1 -1
- package/dist/index-node-22.22.cjs.js +86 -84
- package/dist/index-node-22.22.cjs.js.map +1 -1
- package/dist/index-node-22.22.cjs.web.js +86 -84
- package/dist/index-node-22.22.cjs.web.js.map +1 -1
- package/dist/index-node-22.22.es.mjs +86 -84
- package/dist/index-node-22.22.es.mjs.map +1 -1
- package/dist/index-node-22.22.es.web.mjs +86 -84
- package/dist/index-node-22.22.es.web.mjs.map +1 -1
- package/dist/index.es.js +86 -84
- package/dist/index.es.js.map +1 -1
- package/dist/index.es.web.js +86 -84
- package/dist/index.es.web.js.map +1 -1
- package/dist/storybook-metro.es.android.js +81 -80
- package/dist/storybook-metro.es.android.js.map +1 -1
- package/dist/storybook-metro.es.ios.js +81 -80
- package/dist/storybook-metro.es.ios.js.map +1 -1
- package/dist/storybook-node-22.22.cjs.js +81 -80
- package/dist/storybook-node-22.22.cjs.js.map +1 -1
- package/dist/storybook-node-22.22.cjs.web.js +81 -80
- package/dist/storybook-node-22.22.cjs.web.js.map +1 -1
- package/dist/storybook-node-22.22.es.mjs +81 -80
- package/dist/storybook-node-22.22.es.mjs.map +1 -1
- package/dist/storybook-node-22.22.es.web.mjs +81 -80
- package/dist/storybook-node-22.22.es.web.mjs.map +1 -1
- package/dist/storybook.es.js +81 -80
- package/dist/storybook.es.js.map +1 -1
- package/dist/storybook.es.web.js +81 -80
- package/dist/storybook.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/docs/migration/Typography.md +123 -35
- package/package.json +2 -2
- package/src/.eslintrc.json +2 -5
- package/src/shared/storybook/StorySection.tsx +8 -1
- package/src/shared/storybook/StoryTitle.tsx +8 -2
- package/src/system/actions/Button/Button.mdx +1 -1
- package/src/system/actions/Button/Button.tsx +5 -3
- package/src/system/actions/Button/__snapshots__/Button.features.stories.tsx.snap +10 -10
- package/src/system/actions/Button/__snapshots_web__/Button.features.stories.tsx.snap +2 -2
- package/src/system/actions/Button/utils/contentColor.ts +1 -1
- package/src/system/actions/IconButton/IconButton.tsx +3 -2
- package/src/system/actions/IconButton/__snapshots__/IconButton.features.stories.tsx.snap +10 -10
- package/src/system/actions/IconButton/__snapshots_web__/IconButton.features.stories.tsx.snap +2 -2
- package/src/system/content/icon/Icon.tsx +7 -2
- package/src/system/content/typography/Typography.features.stories.tsx +2 -2
- package/src/system/content/typography/Typography.stories.tsx +2 -2
- package/src/system/content/typography/Typography.tsx +21 -19
- package/src/system/content/typography/TypographyLink.features.stories.tsx +2 -2
- package/src/system/content/typography/TypographyLink.stories.tsx +2 -2
- package/src/system/content/typography/TypographyLink.tsx +4 -2
- package/src/system/core/themes/light/__snapshots__/light.stories.tsx.snap +7 -7
- package/src/system/core/themes/light/__snapshots_web__/light.stories.tsx.snap +7 -7
- package/src/system/core/themes/light/light.ts +73 -73
- package/src/system/core/tokens/palettes/__snapshots__/deepPurpleColorPalette.stories.tsx.snap +141 -70
- package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap +91 -70
- package/src/system/core/tokens/palettes/deepPurpleColorPalette.ts +9 -8
- package/src/system/loading/loader/Loader.tsx +16 -15
- package/src/system/loading/loader/LoaderBackgroundCircle.tsx +8 -1
- package/src/system/loading/loader/LoaderCircleWrapper.tsx +11 -1
- package/src/system/types.ts +51 -2
- package/src/tamagui.config.ts +2 -1
package/src/system/core/tokens/palettes/__snapshots_web__/deepPurpleColorPalette.stories.tsx.snap
CHANGED
|
@@ -40,7 +40,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
40
40
|
<span
|
|
41
41
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
42
42
|
>
|
|
43
|
-
$deepPurple.5
|
|
43
|
+
$palette.deepPurple.5
|
|
44
44
|
</span>
|
|
45
45
|
</div>
|
|
46
46
|
<span
|
|
@@ -61,7 +61,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
61
61
|
<span
|
|
62
62
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
63
63
|
>
|
|
64
|
-
$deepPurple.6
|
|
64
|
+
$palette.deepPurple.6
|
|
65
65
|
</span>
|
|
66
66
|
</div>
|
|
67
67
|
<span
|
|
@@ -82,7 +82,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
82
82
|
<span
|
|
83
83
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
84
84
|
>
|
|
85
|
-
$deepPurple.7
|
|
85
|
+
$palette.deepPurple.7
|
|
86
86
|
</span>
|
|
87
87
|
</div>
|
|
88
88
|
<span
|
|
@@ -103,7 +103,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
103
103
|
<span
|
|
104
104
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
105
105
|
>
|
|
106
|
-
$deepPurple.8
|
|
106
|
+
$palette.deepPurple.8
|
|
107
107
|
</span>
|
|
108
108
|
</div>
|
|
109
109
|
<span
|
|
@@ -124,7 +124,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
124
124
|
<span
|
|
125
125
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
126
126
|
>
|
|
127
|
-
$deepPurple.9
|
|
127
|
+
$palette.deepPurple.9
|
|
128
128
|
</span>
|
|
129
129
|
</div>
|
|
130
130
|
<span
|
|
@@ -145,7 +145,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
145
145
|
<span
|
|
146
146
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
147
147
|
>
|
|
148
|
-
$beige.1
|
|
148
|
+
$palette.beige.1
|
|
149
149
|
</span>
|
|
150
150
|
</div>
|
|
151
151
|
<span
|
|
@@ -166,7 +166,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
166
166
|
<span
|
|
167
167
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
168
168
|
>
|
|
169
|
-
$beige.2
|
|
169
|
+
$palette.beige.2
|
|
170
170
|
</span>
|
|
171
171
|
</div>
|
|
172
172
|
<span
|
|
@@ -187,7 +187,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
187
187
|
<span
|
|
188
188
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
189
189
|
>
|
|
190
|
-
$beige.3
|
|
190
|
+
$palette.beige.3
|
|
191
191
|
</span>
|
|
192
192
|
</div>
|
|
193
193
|
<span
|
|
@@ -208,7 +208,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
208
208
|
<span
|
|
209
209
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
210
210
|
>
|
|
211
|
-
$beige.4
|
|
211
|
+
$palette.beige.4
|
|
212
212
|
</span>
|
|
213
213
|
</div>
|
|
214
214
|
<span
|
|
@@ -229,7 +229,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
229
229
|
<span
|
|
230
230
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
231
231
|
>
|
|
232
|
-
$beige.5
|
|
232
|
+
$palette.beige.5
|
|
233
233
|
</span>
|
|
234
234
|
</div>
|
|
235
235
|
<span
|
|
@@ -250,7 +250,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
250
250
|
<span
|
|
251
251
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
252
252
|
>
|
|
253
|
-
$beige.6
|
|
253
|
+
$palette.beige.6
|
|
254
254
|
</span>
|
|
255
255
|
</div>
|
|
256
256
|
<span
|
|
@@ -271,7 +271,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
271
271
|
<span
|
|
272
272
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
273
273
|
>
|
|
274
|
-
$lightning.4
|
|
274
|
+
$palette.lightning.4
|
|
275
275
|
</span>
|
|
276
276
|
</div>
|
|
277
277
|
<span
|
|
@@ -292,7 +292,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
292
292
|
<span
|
|
293
293
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
294
294
|
>
|
|
295
|
-
$lightning.5
|
|
295
|
+
$palette.lightning.5
|
|
296
296
|
</span>
|
|
297
297
|
</div>
|
|
298
298
|
<span
|
|
@@ -313,7 +313,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
313
313
|
<span
|
|
314
314
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
315
315
|
>
|
|
316
|
-
$lightning.8
|
|
316
|
+
$palette.lightning.8
|
|
317
317
|
</span>
|
|
318
318
|
</div>
|
|
319
319
|
<span
|
|
@@ -334,7 +334,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
334
334
|
<span
|
|
335
335
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
336
336
|
>
|
|
337
|
-
$lightning.9
|
|
337
|
+
$palette.lightning.9
|
|
338
338
|
</span>
|
|
339
339
|
</div>
|
|
340
340
|
<span
|
|
@@ -355,7 +355,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
355
355
|
<span
|
|
356
356
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
357
357
|
>
|
|
358
|
-
$rainbow.pink
|
|
358
|
+
$palette.rainbow.pink
|
|
359
359
|
</span>
|
|
360
360
|
</div>
|
|
361
361
|
<span
|
|
@@ -376,7 +376,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
376
376
|
<span
|
|
377
377
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
378
378
|
>
|
|
379
|
-
$rainbow.brick
|
|
379
|
+
$palette.rainbow.brick
|
|
380
380
|
</span>
|
|
381
381
|
</div>
|
|
382
382
|
<span
|
|
@@ -397,7 +397,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
397
397
|
<span
|
|
398
398
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
399
399
|
>
|
|
400
|
-
$rainbow.orange
|
|
400
|
+
$palette.rainbow.orange
|
|
401
401
|
</span>
|
|
402
402
|
</div>
|
|
403
403
|
<span
|
|
@@ -418,7 +418,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
418
418
|
<span
|
|
419
419
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
420
420
|
>
|
|
421
|
-
$rainbow.gold
|
|
421
|
+
$palette.rainbow.gold
|
|
422
422
|
</span>
|
|
423
423
|
</div>
|
|
424
424
|
<span
|
|
@@ -439,7 +439,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
439
439
|
<span
|
|
440
440
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
441
441
|
>
|
|
442
|
-
$rainbow.sun
|
|
442
|
+
$palette.rainbow.sun
|
|
443
443
|
</span>
|
|
444
444
|
</div>
|
|
445
445
|
<span
|
|
@@ -460,7 +460,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
460
460
|
<span
|
|
461
461
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
462
462
|
>
|
|
463
|
-
$rainbow.green-pine
|
|
463
|
+
$palette.rainbow.green-pine
|
|
464
464
|
</span>
|
|
465
465
|
</div>
|
|
466
466
|
<span
|
|
@@ -481,7 +481,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
481
481
|
<span
|
|
482
482
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
483
483
|
>
|
|
484
|
-
$rainbow.green-grass
|
|
484
|
+
$palette.rainbow.green-grass
|
|
485
485
|
</span>
|
|
486
486
|
</div>
|
|
487
487
|
<span
|
|
@@ -502,7 +502,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
502
502
|
<span
|
|
503
503
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
504
504
|
>
|
|
505
|
-
$rainbow.green-apple
|
|
505
|
+
$palette.rainbow.green-apple
|
|
506
506
|
</span>
|
|
507
507
|
</div>
|
|
508
508
|
<span
|
|
@@ -523,7 +523,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
523
523
|
<span
|
|
524
524
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
525
525
|
>
|
|
526
|
-
$rainbow.blue-electric
|
|
526
|
+
$palette.rainbow.blue-electric
|
|
527
527
|
</span>
|
|
528
528
|
</div>
|
|
529
529
|
<span
|
|
@@ -544,7 +544,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
544
544
|
<span
|
|
545
545
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
546
546
|
>
|
|
547
|
-
$rainbow.blue-sky
|
|
547
|
+
$palette.rainbow.blue-sky
|
|
548
548
|
</span>
|
|
549
549
|
</div>
|
|
550
550
|
<span
|
|
@@ -565,7 +565,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
565
565
|
<span
|
|
566
566
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
567
567
|
>
|
|
568
|
-
$grey.0
|
|
568
|
+
$palette.grey.0
|
|
569
569
|
</span>
|
|
570
570
|
</div>
|
|
571
571
|
<span
|
|
@@ -586,7 +586,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
586
586
|
<span
|
|
587
587
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
588
588
|
>
|
|
589
|
-
$grey.1
|
|
589
|
+
$palette.grey.1
|
|
590
590
|
</span>
|
|
591
591
|
</div>
|
|
592
592
|
<span
|
|
@@ -599,7 +599,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
599
599
|
class="is_HStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-row _gap-t-space-spa1366020313 _alignItems-center"
|
|
600
600
|
>
|
|
601
601
|
<div
|
|
602
|
-
class="_dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385508 _height-t-size-size1385508 _btlr-t-radius-ra1673638410 _btrr-t-radius-ra1673638410 _bbrr-t-radius-ra1673638410 _bblr-t-radius-ra1673638410 _backgroundColor-
|
|
602
|
+
class="_dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385508 _height-t-size-size1385508 _btlr-t-radius-ra1673638410 _btrr-t-radius-ra1673638410 _bbrr-t-radius-ra1673638410 _bblr-t-radius-ra1673638410 _backgroundColor-DCDCDC35 _btw-1px _brw-1px _borderBottomWidth-1px _borderLeftWidth-1px _btc-border--bas1360416657 _brc-border--bas1360416657 _borderBottomColor-border--bas1360416657 _borderLeftColor-border--bas1360416657 _borderBottomStyle-solid _borderTopStyle-solid _borderLeftStyle-solid _borderRightStyle-solid"
|
|
603
603
|
/>
|
|
604
604
|
<div
|
|
605
605
|
class="_dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-200px"
|
|
@@ -607,13 +607,34 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
607
607
|
<span
|
|
608
608
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
609
609
|
>
|
|
610
|
-
$grey.2
|
|
610
|
+
$palette.grey.2
|
|
611
611
|
</span>
|
|
612
612
|
</div>
|
|
613
613
|
<span
|
|
614
614
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-re98715119 _textAlign-left _col-content--ba1918259606"
|
|
615
615
|
>
|
|
616
|
-
#
|
|
616
|
+
#DCDCDC
|
|
617
|
+
</span>
|
|
618
|
+
</div>
|
|
619
|
+
<div
|
|
620
|
+
class="is_HStack _dsp-flex _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _fd-row _gap-t-space-spa1366020313 _alignItems-center"
|
|
621
|
+
>
|
|
622
|
+
<div
|
|
623
|
+
class="_dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-t-size-size1385508 _height-t-size-size1385508 _btlr-t-radius-ra1673638410 _btrr-t-radius-ra1673638410 _bbrr-t-radius-ra1673638410 _bblr-t-radius-ra1673638410 _backgroundColor-BABABA35 _btw-1px _brw-1px _borderBottomWidth-1px _borderLeftWidth-1px _btc-border--bas1360416657 _brc-border--bas1360416657 _borderBottomColor-border--bas1360416657 _borderLeftColor-border--bas1360416657 _borderBottomStyle-solid _borderTopStyle-solid _borderLeftStyle-solid _borderRightStyle-solid"
|
|
624
|
+
/>
|
|
625
|
+
<div
|
|
626
|
+
class="_dsp-flex _alignItems-stretch _fd-column _fb-auto _bxs-border-box _pos-relative _minHeight-0px _minWidth-0px _flexShrink-0 _width-200px"
|
|
627
|
+
>
|
|
628
|
+
<span
|
|
629
|
+
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
630
|
+
>
|
|
631
|
+
$palette.grey.3
|
|
632
|
+
</span>
|
|
633
|
+
</div>
|
|
634
|
+
<span
|
|
635
|
+
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-re98715119 _textAlign-left _col-content--ba1918259606"
|
|
636
|
+
>
|
|
637
|
+
#BABABA
|
|
617
638
|
</span>
|
|
618
639
|
</div>
|
|
619
640
|
<div
|
|
@@ -628,7 +649,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
628
649
|
<span
|
|
629
650
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
630
651
|
>
|
|
631
|
-
$grey.
|
|
652
|
+
$palette.grey.4
|
|
632
653
|
</span>
|
|
633
654
|
</div>
|
|
634
655
|
<span
|
|
@@ -649,7 +670,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
649
670
|
<span
|
|
650
671
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
651
672
|
>
|
|
652
|
-
$grey.5
|
|
673
|
+
$palette.grey.5
|
|
653
674
|
</span>
|
|
654
675
|
</div>
|
|
655
676
|
<span
|
|
@@ -670,7 +691,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
670
691
|
<span
|
|
671
692
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
672
693
|
>
|
|
673
|
-
$grey.7
|
|
694
|
+
$palette.grey.7
|
|
674
695
|
</span>
|
|
675
696
|
</div>
|
|
676
697
|
<span
|
|
@@ -691,7 +712,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
691
712
|
<span
|
|
692
713
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
693
714
|
>
|
|
694
|
-
$grey.9
|
|
715
|
+
$palette.grey.9
|
|
695
716
|
</span>
|
|
696
717
|
</div>
|
|
697
718
|
<span
|
|
@@ -712,7 +733,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
712
733
|
<span
|
|
713
734
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
714
735
|
>
|
|
715
|
-
$blue.1
|
|
736
|
+
$palette.blue.1
|
|
716
737
|
</span>
|
|
717
738
|
</div>
|
|
718
739
|
<span
|
|
@@ -733,7 +754,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
733
754
|
<span
|
|
734
755
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
735
756
|
>
|
|
736
|
-
$blue.2
|
|
757
|
+
$palette.blue.2
|
|
737
758
|
</span>
|
|
738
759
|
</div>
|
|
739
760
|
<span
|
|
@@ -754,7 +775,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
754
775
|
<span
|
|
755
776
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
756
777
|
>
|
|
757
|
-
$blue.4
|
|
778
|
+
$palette.blue.4
|
|
758
779
|
</span>
|
|
759
780
|
</div>
|
|
760
781
|
<span
|
|
@@ -775,7 +796,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
775
796
|
<span
|
|
776
797
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
777
798
|
>
|
|
778
|
-
$blue.6
|
|
799
|
+
$palette.blue.6
|
|
779
800
|
</span>
|
|
780
801
|
</div>
|
|
781
802
|
<span
|
|
@@ -796,7 +817,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
796
817
|
<span
|
|
797
818
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
798
819
|
>
|
|
799
|
-
$blue.7
|
|
820
|
+
$palette.blue.7
|
|
800
821
|
</span>
|
|
801
822
|
</div>
|
|
802
823
|
<span
|
|
@@ -817,7 +838,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
817
838
|
<span
|
|
818
839
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
819
840
|
>
|
|
820
|
-
$green.1
|
|
841
|
+
$palette.green.1
|
|
821
842
|
</span>
|
|
822
843
|
</div>
|
|
823
844
|
<span
|
|
@@ -838,7 +859,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
838
859
|
<span
|
|
839
860
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
840
861
|
>
|
|
841
|
-
$green.2
|
|
862
|
+
$palette.green.2
|
|
842
863
|
</span>
|
|
843
864
|
</div>
|
|
844
865
|
<span
|
|
@@ -859,7 +880,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
859
880
|
<span
|
|
860
881
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
861
882
|
>
|
|
862
|
-
$green.6
|
|
883
|
+
$palette.green.6
|
|
863
884
|
</span>
|
|
864
885
|
</div>
|
|
865
886
|
<span
|
|
@@ -880,7 +901,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
880
901
|
<span
|
|
881
902
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
882
903
|
>
|
|
883
|
-
$green.7
|
|
904
|
+
$palette.green.7
|
|
884
905
|
</span>
|
|
885
906
|
</div>
|
|
886
907
|
<span
|
|
@@ -901,7 +922,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
901
922
|
<span
|
|
902
923
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
903
924
|
>
|
|
904
|
-
$yellow.1
|
|
925
|
+
$palette.yellow.1
|
|
905
926
|
</span>
|
|
906
927
|
</div>
|
|
907
928
|
<span
|
|
@@ -922,7 +943,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
922
943
|
<span
|
|
923
944
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
924
945
|
>
|
|
925
|
-
$yellow.2
|
|
946
|
+
$palette.yellow.2
|
|
926
947
|
</span>
|
|
927
948
|
</div>
|
|
928
949
|
<span
|
|
@@ -943,7 +964,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
943
964
|
<span
|
|
944
965
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
945
966
|
>
|
|
946
|
-
$yellow.6
|
|
967
|
+
$palette.yellow.6
|
|
947
968
|
</span>
|
|
948
969
|
</div>
|
|
949
970
|
<span
|
|
@@ -964,7 +985,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
964
985
|
<span
|
|
965
986
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
966
987
|
>
|
|
967
|
-
$yellow.7
|
|
988
|
+
$palette.yellow.7
|
|
968
989
|
</span>
|
|
969
990
|
</div>
|
|
970
991
|
<span
|
|
@@ -985,7 +1006,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
985
1006
|
<span
|
|
986
1007
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
987
1008
|
>
|
|
988
|
-
$red.1
|
|
1009
|
+
$palette.red.1
|
|
989
1010
|
</span>
|
|
990
1011
|
</div>
|
|
991
1012
|
<span
|
|
@@ -1006,7 +1027,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1006
1027
|
<span
|
|
1007
1028
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1008
1029
|
>
|
|
1009
|
-
$red.2
|
|
1030
|
+
$palette.red.2
|
|
1010
1031
|
</span>
|
|
1011
1032
|
</div>
|
|
1012
1033
|
<span
|
|
@@ -1027,7 +1048,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1027
1048
|
<span
|
|
1028
1049
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1029
1050
|
>
|
|
1030
|
-
$red.6
|
|
1051
|
+
$palette.red.6
|
|
1031
1052
|
</span>
|
|
1032
1053
|
</div>
|
|
1033
1054
|
<span
|
|
@@ -1048,7 +1069,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1048
1069
|
<span
|
|
1049
1070
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1050
1071
|
>
|
|
1051
|
-
$red.7
|
|
1072
|
+
$palette.red.7
|
|
1052
1073
|
</span>
|
|
1053
1074
|
</div>
|
|
1054
1075
|
<span
|
|
@@ -1069,7 +1090,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1069
1090
|
<span
|
|
1070
1091
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1071
1092
|
>
|
|
1072
|
-
$mauve.1
|
|
1093
|
+
$palette.mauve.1
|
|
1073
1094
|
</span>
|
|
1074
1095
|
</div>
|
|
1075
1096
|
<span
|
|
@@ -1090,7 +1111,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1090
1111
|
<span
|
|
1091
1112
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1092
1113
|
>
|
|
1093
|
-
$mauve.2
|
|
1114
|
+
$palette.mauve.2
|
|
1094
1115
|
</span>
|
|
1095
1116
|
</div>
|
|
1096
1117
|
<span
|
|
@@ -1111,7 +1132,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1111
1132
|
<span
|
|
1112
1133
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1113
1134
|
>
|
|
1114
|
-
$mauve.3
|
|
1135
|
+
$palette.mauve.3
|
|
1115
1136
|
</span>
|
|
1116
1137
|
</div>
|
|
1117
1138
|
<span
|
|
@@ -1132,7 +1153,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1132
1153
|
<span
|
|
1133
1154
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1134
1155
|
>
|
|
1135
|
-
$mauve.4
|
|
1156
|
+
$palette.mauve.4
|
|
1136
1157
|
</span>
|
|
1137
1158
|
</div>
|
|
1138
1159
|
<span
|
|
@@ -1153,7 +1174,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1153
1174
|
<span
|
|
1154
1175
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1155
1176
|
>
|
|
1156
|
-
$deepPurple-alpha.10
|
|
1177
|
+
$palette.deepPurple-alpha.10
|
|
1157
1178
|
</span>
|
|
1158
1179
|
</div>
|
|
1159
1180
|
<span
|
|
@@ -1174,7 +1195,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1174
1195
|
<span
|
|
1175
1196
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1176
1197
|
>
|
|
1177
|
-
$beige-alpha.25
|
|
1198
|
+
$palette.beige-alpha.25
|
|
1178
1199
|
</span>
|
|
1179
1200
|
</div>
|
|
1180
1201
|
<span
|
|
@@ -1195,7 +1216,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1195
1216
|
<span
|
|
1196
1217
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1197
1218
|
>
|
|
1198
|
-
$beige-alpha.40
|
|
1219
|
+
$palette.beige-alpha.40
|
|
1199
1220
|
</span>
|
|
1200
1221
|
</div>
|
|
1201
1222
|
<span
|
|
@@ -1216,7 +1237,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1216
1237
|
<span
|
|
1217
1238
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1218
1239
|
>
|
|
1219
|
-
$beige-alpha.50
|
|
1240
|
+
$palette.beige-alpha.50
|
|
1220
1241
|
</span>
|
|
1221
1242
|
</div>
|
|
1222
1243
|
<span
|
|
@@ -1237,7 +1258,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1237
1258
|
<span
|
|
1238
1259
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1239
1260
|
>
|
|
1240
|
-
$grey-alpha.25
|
|
1261
|
+
$palette.grey-alpha.25
|
|
1241
1262
|
</span>
|
|
1242
1263
|
</div>
|
|
1243
1264
|
<span
|
|
@@ -1258,7 +1279,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1258
1279
|
<span
|
|
1259
1280
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1260
1281
|
>
|
|
1261
|
-
$grey-alpha.35
|
|
1282
|
+
$palette.grey-alpha.35
|
|
1262
1283
|
</span>
|
|
1263
1284
|
</div>
|
|
1264
1285
|
<span
|
|
@@ -1279,7 +1300,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1279
1300
|
<span
|
|
1280
1301
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1281
1302
|
>
|
|
1282
|
-
$grey-alpha.50
|
|
1303
|
+
$palette.grey-alpha.50
|
|
1283
1304
|
</span>
|
|
1284
1305
|
</div>
|
|
1285
1306
|
<span
|
|
@@ -1300,7 +1321,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1300
1321
|
<span
|
|
1301
1322
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1302
1323
|
>
|
|
1303
|
-
$white-alpha.10
|
|
1324
|
+
$palette.white-alpha.10
|
|
1304
1325
|
</span>
|
|
1305
1326
|
</div>
|
|
1306
1327
|
<span
|
|
@@ -1321,7 +1342,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1321
1342
|
<span
|
|
1322
1343
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1323
1344
|
>
|
|
1324
|
-
$white-alpha.20
|
|
1345
|
+
$palette.white-alpha.20
|
|
1325
1346
|
</span>
|
|
1326
1347
|
</div>
|
|
1327
1348
|
<span
|
|
@@ -1342,7 +1363,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1342
1363
|
<span
|
|
1343
1364
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1344
1365
|
>
|
|
1345
|
-
$white-alpha.60
|
|
1366
|
+
$palette.white-alpha.60
|
|
1346
1367
|
</span>
|
|
1347
1368
|
</div>
|
|
1348
1369
|
<span
|
|
@@ -1363,7 +1384,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1363
1384
|
<span
|
|
1364
1385
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1365
1386
|
>
|
|
1366
|
-
$white-alpha.80
|
|
1387
|
+
$palette.white-alpha.80
|
|
1367
1388
|
</span>
|
|
1368
1389
|
</div>
|
|
1369
1390
|
<span
|
|
@@ -1384,7 +1405,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1384
1405
|
<span
|
|
1385
1406
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1386
1407
|
>
|
|
1387
|
-
$white-alpha.90
|
|
1408
|
+
$palette.white-alpha.90
|
|
1388
1409
|
</span>
|
|
1389
1410
|
</div>
|
|
1390
1411
|
<span
|
|
@@ -1405,7 +1426,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1405
1426
|
<span
|
|
1406
1427
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1407
1428
|
>
|
|
1408
|
-
$white
|
|
1429
|
+
$palette.white
|
|
1409
1430
|
</span>
|
|
1410
1431
|
</div>
|
|
1411
1432
|
<span
|
|
@@ -1426,7 +1447,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1426
1447
|
<span
|
|
1427
1448
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1428
1449
|
>
|
|
1429
|
-
$black
|
|
1450
|
+
$palette.black
|
|
1430
1451
|
</span>
|
|
1431
1452
|
</div>
|
|
1432
1453
|
<span
|
|
@@ -1447,7 +1468,7 @@ exports[`Bumper/Core/Tokens ColorPalette 1`] = `
|
|
|
1447
1468
|
<span
|
|
1448
1469
|
class="font_GTStandard _WebkitFontSmoothing-_platformweb_antialiased _dsp-inline _bxs-border-box _ww-break-word _ws-pre-wrap _marginTop-0px _marginRight-0px _marginBottom-0px _marginLeft-0px _ff-f-family _fs-f-size-body1510 _lh-f-lineHeigh201793153 _ls-f-letterSpa1099960310 _fw-f-weight-bo3448 _col-content--ba907952141 _textAlign-left"
|
|
1449
1470
|
>
|
|
1450
|
-
$transparent
|
|
1471
|
+
$palette.transparent
|
|
1451
1472
|
</span>
|
|
1452
1473
|
</div>
|
|
1453
1474
|
<span
|