@breadstone/mosaik-themes 0.0.224 → 0.0.227
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 +41 -0
- package/index.cjs +2 -2
- package/index.cjs.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/themes/___cosmopolitan-tokens.css +23 -1
- package/themes/___joy-tokens.css +10 -0
- package/themes/___memphis-tokens.css +15 -3
- package/themes/cosmopolitan-tokens.scss +22 -1
- package/themes/cosmopolitan.scss +3869 -52
- package/themes/joy-tokens.scss +9 -0
- package/themes/joy.scss +3936 -118
- package/themes/memphis-tokens.scss +14 -3
- package/themes/memphis.scss +3858 -33
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
// ------------------------------------------------------------------------------
|
|
3
|
+
// <auto-generated>
|
|
4
|
+
// This code was generated by a tool.
|
|
5
|
+
// Changes to this file may cause incorrect behavior and will be lost if
|
|
6
|
+
// the code is regenerated.
|
|
7
|
+
// </auto-generated>
|
|
8
|
+
// ------------------------------------------------------------------------------
|
|
9
|
+
|
|
1
10
|
$name: "memphis";
|
|
2
11
|
$font-family: Nunito, sans-serif;
|
|
3
12
|
$layout-radius: 0px;
|
|
@@ -386,10 +395,12 @@ $appearance-soft: "soft";
|
|
|
386
395
|
$appearance-solid: "solid";
|
|
387
396
|
$variant-primary: "primary";
|
|
388
397
|
$variant-secondary: "secondary";
|
|
389
|
-
$variant-
|
|
390
|
-
$variant-warning: "warning";
|
|
398
|
+
$variant-tertiary: "tertiary";
|
|
391
399
|
$variant-danger: "danger";
|
|
400
|
+
$variant-warning: "warning";
|
|
392
401
|
$variant-success: "success";
|
|
402
|
+
$variant-info: "info";
|
|
403
|
+
$variant-highlight: "highlight";
|
|
393
404
|
$variant-neutral: "neutral";
|
|
394
405
|
$duration-short: 200ms;
|
|
395
406
|
$duration-medium: 400ms;
|
|
@@ -434,5 +445,5 @@ $elevation-dark-extrabold-color-0: $scheme-dark-contrast;
|
|
|
434
445
|
$size-key: $size-key-tiny $size-key-small $size-key-medium $size-key-large $size-key-giant;
|
|
435
446
|
$elevation-key: $elevation-key-light $elevation-key-semilight $elevation-key-regular $elevation-key-semibold $elevation-key-bold $elevation-key-extrabold;
|
|
436
447
|
$appearance: $appearance-default $appearance-outline $appearance-plain $appearance-soft $appearance-solid;
|
|
437
|
-
$variant: $variant-primary $variant-secondary $variant-
|
|
448
|
+
$variant: $variant-primary $variant-secondary $variant-tertiary $variant-danger $variant-warning $variant-success $variant-info $variant-highlight $variant-neutral;
|
|
438
449
|
$duration: $duration-short $duration-medium $duration-long;
|