@umami/react-zen 0.232.0 → 0.234.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.
- package/README.md +3 -3
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +71 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +71 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/styles.css +12 -30
- package/styles.full.css +1 -1
- package/tailwind.preset.ts +5 -11
package/tailwind.preset.ts
CHANGED
|
@@ -26,6 +26,11 @@ const preset: Config = {
|
|
|
26
26
|
mono: 'var(--font-family-mono)',
|
|
27
27
|
},
|
|
28
28
|
colors: {
|
|
29
|
+
// Primary accent/brand color
|
|
30
|
+
primary: {
|
|
31
|
+
DEFAULT: 'var(--primary)',
|
|
32
|
+
foreground: 'var(--primary-foreground)',
|
|
33
|
+
},
|
|
29
34
|
// Surface colors (backgrounds)
|
|
30
35
|
surface: {
|
|
31
36
|
base: 'var(--surface-base)',
|
|
@@ -39,37 +44,26 @@ const preset: Config = {
|
|
|
39
44
|
foreground: {
|
|
40
45
|
DEFAULT: 'var(--text-primary)',
|
|
41
46
|
primary: 'var(--text-primary)',
|
|
42
|
-
secondary: 'var(--text-secondary)',
|
|
43
47
|
muted: 'var(--text-muted)',
|
|
44
48
|
disabled: 'var(--text-disabled)',
|
|
45
|
-
inverted: 'var(--text-inverted)',
|
|
46
|
-
'on-primary': 'var(--text-on-primary)',
|
|
47
49
|
},
|
|
48
50
|
// Border colors
|
|
49
51
|
edge: {
|
|
50
52
|
DEFAULT: 'var(--border-default)',
|
|
51
53
|
muted: 'var(--border-muted)',
|
|
52
54
|
strong: 'var(--border-strong)',
|
|
53
|
-
inverted: 'var(--border-inverted)',
|
|
54
55
|
},
|
|
55
56
|
// Interactive state colors
|
|
56
57
|
interactive: {
|
|
57
58
|
DEFAULT: 'var(--interactive-bg)',
|
|
58
59
|
hover: 'var(--interactive-bg-hover)',
|
|
59
60
|
pressed: 'var(--interactive-bg-pressed)',
|
|
60
|
-
selected: 'var(--interactive-bg-selected)',
|
|
61
|
-
'text-selected': 'var(--interactive-text-selected)',
|
|
62
61
|
},
|
|
63
62
|
// Focus colors
|
|
64
63
|
focus: {
|
|
65
64
|
ring: 'var(--focus-ring)',
|
|
66
65
|
offset: 'var(--focus-ring-offset)',
|
|
67
66
|
},
|
|
68
|
-
// Track colors (sliders, progress bars)
|
|
69
|
-
track: {
|
|
70
|
-
DEFAULT: 'var(--track-bg)',
|
|
71
|
-
fill: 'var(--track-fill)',
|
|
72
|
-
},
|
|
73
67
|
// Status colors
|
|
74
68
|
status: {
|
|
75
69
|
info: 'var(--status-info)',
|