@stackshift-ui/tailwind-config 2.0.8-beta.2 → 2.1.0-beta.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/CHANGELOG.md +14 -0
- package/package.json +2 -2
- package/tailwind.config.ts +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @stackshift-ui/tailwind-config
|
|
2
2
|
|
|
3
|
+
## 2.1.0-beta.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- shadcn migration
|
|
8
|
+
|
|
9
|
+
## 2.0.8
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- f48df11: resolve footer build error
|
|
14
|
+
- 0f448cd: revert padding changes
|
|
15
|
+
- 9ed91d0: additional qa/qc UI fixes
|
|
16
|
+
|
|
3
17
|
## 2.0.8-beta.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackshift-ui/tailwind-config",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"exports": {
|
|
6
6
|
"./tailwind": "./tailwind.config.ts",
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"tailwindcss": "^3.4.1"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@stackshift-ui/typescript-config": "6.0.10
|
|
13
|
+
"@stackshift-ui/typescript-config": "6.0.10"
|
|
14
14
|
}
|
|
15
15
|
}
|
package/tailwind.config.ts
CHANGED
|
@@ -12,8 +12,24 @@ const config = {
|
|
|
12
12
|
extend: {
|
|
13
13
|
colors: {
|
|
14
14
|
primary: "#0045d8",
|
|
15
|
+
'primary-foreground': '#ffffff',
|
|
15
16
|
secondary: "#3576ff",
|
|
17
|
+
'secondary-foreground': '#ffffff',
|
|
16
18
|
background: "#F9FAFB",
|
|
19
|
+
foreground: '#0b1220', // hsl(222, 84%, 5%) approx
|
|
20
|
+
card: '#ffffff',
|
|
21
|
+
'card-foreground': '#0b1220',
|
|
22
|
+
popover: '#ffffff',
|
|
23
|
+
'popover-foreground': '#0b1220',
|
|
24
|
+
muted: '#d9e6f9',
|
|
25
|
+
'muted-foreground': '#77828a', // hsl(215, 16%, 47%)
|
|
26
|
+
accent: '#d9e6f9',
|
|
27
|
+
'accent-foreground': '#1a2c3f',
|
|
28
|
+
destructive: '#f06666', // hsl(0, 84%, 60%)
|
|
29
|
+
'destructive-foreground': '#e6f0fc',
|
|
30
|
+
border: '#e6eaf2', // hsl(214, 32%, 91%)
|
|
31
|
+
input: '#e6eaf2',
|
|
32
|
+
ring: '#0b1220',
|
|
17
33
|
},
|
|
18
34
|
borderRadius: {
|
|
19
35
|
none: "0px",
|