@classic-homes/theme-tailwind-preset 0.1.20 → 0.1.21
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.js +10 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -100,28 +100,36 @@ module.exports = {
|
|
|
100
100
|
border: 'hsl(var(--border))',
|
|
101
101
|
input: 'hsl(var(--input))',
|
|
102
102
|
ring: 'hsl(var(--ring))',
|
|
103
|
-
background:
|
|
103
|
+
background: {
|
|
104
|
+
DEFAULT: 'hsl(var(--background))',
|
|
105
|
+
hover: 'hsl(var(--background-hover))',
|
|
106
|
+
},
|
|
104
107
|
foreground: 'hsl(var(--foreground))',
|
|
105
108
|
|
|
106
109
|
primary: {
|
|
107
110
|
DEFAULT: 'hsl(var(--primary))',
|
|
108
111
|
foreground: 'hsl(var(--primary-foreground))',
|
|
112
|
+
hover: 'hsl(var(--primary-hover))',
|
|
109
113
|
},
|
|
110
114
|
secondary: {
|
|
111
115
|
DEFAULT: 'hsl(var(--secondary))',
|
|
112
116
|
foreground: 'hsl(var(--secondary-foreground))',
|
|
117
|
+
hover: 'hsl(var(--secondary-hover))',
|
|
113
118
|
},
|
|
114
119
|
destructive: {
|
|
115
120
|
DEFAULT: 'hsl(var(--destructive))',
|
|
116
121
|
foreground: 'hsl(var(--destructive-foreground))',
|
|
122
|
+
hover: 'hsl(var(--destructive-hover))',
|
|
117
123
|
},
|
|
118
124
|
muted: {
|
|
119
125
|
DEFAULT: 'hsl(var(--muted))',
|
|
120
126
|
foreground: 'hsl(var(--muted-foreground))',
|
|
127
|
+
hover: 'hsl(var(--muted-hover))',
|
|
121
128
|
},
|
|
122
129
|
accent: {
|
|
123
130
|
DEFAULT: 'hsl(var(--accent))',
|
|
124
131
|
foreground: 'hsl(var(--accent-foreground))',
|
|
132
|
+
hover: 'hsl(var(--accent-hover))',
|
|
125
133
|
},
|
|
126
134
|
popover: {
|
|
127
135
|
DEFAULT: 'hsl(var(--popover))',
|
|
@@ -158,6 +166,7 @@ module.exports = {
|
|
|
158
166
|
'primary-foreground': 'hsl(var(--sidebar-primary-foreground))',
|
|
159
167
|
accent: 'hsl(var(--sidebar-accent))',
|
|
160
168
|
'accent-foreground': 'hsl(var(--sidebar-accent-foreground))',
|
|
169
|
+
'accent-hover': 'hsl(var(--sidebar-accent-hover))',
|
|
161
170
|
border: 'hsl(var(--sidebar-border))',
|
|
162
171
|
ring: 'hsl(var(--sidebar-ring))',
|
|
163
172
|
},
|