@breadstone/mosaik-themes 0.0.231 → 0.0.233
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/index.cjs +2155 -2041
- package/index.cjs.map +1 -1
- package/index.d.mts +525 -372
- package/index.d.ts +525 -372
- package/index.js +2153 -2037
- package/index.js.map +1 -1
- package/package.json +3 -4
- package/tailwind/v3/plugins/joyTailwindPlugin.js +4 -0
- package/tailwind/v3/plugins/joyTailwindPlugin.js.map +1 -1
- package/tailwind/v3/presets/joyTailwindPresets.js +4 -0
- package/tailwind/v3/presets/joyTailwindPresets.js.map +1 -1
- package/themes/___joy-tokens.css +8 -0
- package/themes/cosmopolitan.scss +670 -36
- package/themes/joy-tokens.scss +8 -0
- package/themes/joy.scss +1111 -474
- package/themes/memphis.scss +717 -83
package/themes/joy-tokens.scss
CHANGED
|
@@ -292,6 +292,12 @@ $typography-body2-font-weight: 400;
|
|
|
292
292
|
$typography-body2-letter-spacing: 0.2857142857142857px;
|
|
293
293
|
$typography-body2-text-decoration: none;
|
|
294
294
|
$typography-body2-text-transform: none;
|
|
295
|
+
$typography-supporting-font-size: 12px;
|
|
296
|
+
$typography-supporting-line-height: 14px;
|
|
297
|
+
$typography-supporting-font-weight: 400;
|
|
298
|
+
$typography-supporting-letter-spacing: 0.2857142857142857px;
|
|
299
|
+
$typography-supporting-text-decoration: none;
|
|
300
|
+
$typography-supporting-text-transform: none;
|
|
295
301
|
$typography-caption-font-size: 12px;
|
|
296
302
|
$typography-caption-line-height: 16px;
|
|
297
303
|
$typography-caption-font-weight: 400;
|
|
@@ -463,6 +469,7 @@ $typography-key-subtitle1: "subtitle1";
|
|
|
463
469
|
$typography-key-subtitle2: "subtitle2";
|
|
464
470
|
$typography-key-body1: "body1";
|
|
465
471
|
$typography-key-body2: "body2";
|
|
472
|
+
$typography-key-supporting: "supporting";
|
|
466
473
|
$typography-key-caption: "caption";
|
|
467
474
|
$typography-key-button: "button";
|
|
468
475
|
$typography-key-overline: "overline";
|
|
@@ -499,6 +506,7 @@ $typography-subtitle1-font-family: $font-family;
|
|
|
499
506
|
$typography-subtitle2-font-family: $font-family;
|
|
500
507
|
$typography-body1-font-family: $font-family;
|
|
501
508
|
$typography-body2-font-family: $font-family;
|
|
509
|
+
$typography-supporting-font-family: $font-family;
|
|
502
510
|
$typography-caption-font-family: $font-family;
|
|
503
511
|
$typography-button-font-family: $font-family;
|
|
504
512
|
$typography-overline-font-family: $font-family;
|