@seed-design/css 0.0.39 → 0.1.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.
@@ -1,13 +1,9 @@
1
1
  export const vars = {
2
2
  "base": {
3
3
  "enabled": {
4
- "root": {
5
- "color": "var(--seed-color-palette-gray-200)"
6
- },
7
4
  "shimmer": {
8
5
  "duration": "1.5s",
9
- "timingFunction": "var(--seed-timing-function-easing)",
10
- "color": "var(--seed-gradient-shimmer)"
6
+ "timingFunction": "var(--seed-timing-function-easing)"
11
7
  }
12
8
  }
13
9
  },
@@ -38,5 +34,25 @@ export const vars = {
38
34
  "cornerRadius": "var(--seed-radius-full)"
39
35
  }
40
36
  }
37
+ },
38
+ "toneNeutral": {
39
+ "enabled": {
40
+ "root": {
41
+ "color": "var(--seed-color-palette-gray-200)"
42
+ },
43
+ "shimmer": {
44
+ "color": "var(--seed-gradient-shimmer-neutral)"
45
+ }
46
+ }
47
+ },
48
+ "toneMagic": {
49
+ "enabled": {
50
+ "root": {
51
+ "color": "var(--seed-color-bg-magic-weak)"
52
+ },
53
+ "shimmer": {
54
+ "color": "var(--seed-gradient-shimmer-magic)"
55
+ }
56
+ }
41
57
  }
42
58
  }
@@ -1 +1,6 @@
1
- export declare const shimmer = "var(--seed-gradient-shimmer)";
1
+ export declare const shimmerNeutral = "var(--seed-gradient-shimmer-neutral)";
2
+ export declare const shimmerMagic = "var(--seed-gradient-shimmer-magic)";
3
+ export declare const fadeNeutral = "var(--seed-gradient-fade-neutral)";
4
+ export declare const glowMagic = "var(--seed-gradient-glow-magic)";
5
+ export declare const glowMagicPressed = "var(--seed-gradient-glow-magic-pressed)";
6
+ export declare const highlightMagic = "var(--seed-gradient-highlight-magic)";
package/vars/gradient.mjs CHANGED
@@ -1 +1,6 @@
1
- export const shimmer = "var(--seed-gradient-shimmer)";
1
+ export const shimmerNeutral = "var(--seed-gradient-shimmer-neutral)";
2
+ export const shimmerMagic = "var(--seed-gradient-shimmer-magic)";
3
+ export const fadeNeutral = "var(--seed-gradient-fade-neutral)";
4
+ export const glowMagic = "var(--seed-gradient-glow-magic)";
5
+ export const glowMagicPressed = "var(--seed-gradient-glow-magic-pressed)";
6
+ export const highlightMagic = "var(--seed-gradient-highlight-magic)";