kofi-stack-template-generator 2.1.60 → 2.1.62
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/.turbo/turbo-build.log +6 -6
- package/dist/index.js +588 -8
- package/package.json +2 -2
- package/src/templates.generated.ts +11 -10
- package/templates/admin/src/app/globals.css.hbs +1 -2
- package/templates/design-system/src/app/globals.css.hbs +1 -2
- package/templates/marketing/nextjs/package.json.hbs +2 -1
- package/templates/marketing/nextjs/src/app/globals.css.hbs +3 -445
- package/templates/packages/ui/components.json.hbs +27 -0
- package/templates/packages/ui/package.json.hbs +5 -4
- package/templates/packages/ui/src/globals.css.hbs +568 -0
- package/templates/web/components.json.hbs +6 -0
- package/templates/web/src/app/globals.css.hbs +11 -0
- package/templates/packages/ui/src/styles.css.hbs +0 -121
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
@import "tailwindcss";
|
|
2
|
-
|
|
3
|
-
@custom-variant dark (&:is(.dark *));
|
|
4
|
-
|
|
5
|
-
@theme inline {
|
|
6
|
-
--color-background: var(--background);
|
|
7
|
-
--color-foreground: var(--foreground);
|
|
8
|
-
--font-sans: var(--font-geist-sans);
|
|
9
|
-
--font-mono: var(--font-geist-mono);
|
|
10
|
-
--color-sidebar-ring: var(--sidebar-ring);
|
|
11
|
-
--color-sidebar-border: var(--sidebar-border);
|
|
12
|
-
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
13
|
-
--color-sidebar-accent: var(--sidebar-accent);
|
|
14
|
-
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
15
|
-
--color-sidebar-primary: var(--sidebar-primary);
|
|
16
|
-
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
17
|
-
--color-sidebar: var(--sidebar);
|
|
18
|
-
--color-chart-5: var(--chart-5);
|
|
19
|
-
--color-chart-4: var(--chart-4);
|
|
20
|
-
--color-chart-3: var(--chart-3);
|
|
21
|
-
--color-chart-2: var(--chart-2);
|
|
22
|
-
--color-chart-1: var(--chart-1);
|
|
23
|
-
--color-ring: var(--ring);
|
|
24
|
-
--color-input: var(--input);
|
|
25
|
-
--color-border: var(--border);
|
|
26
|
-
--color-destructive: var(--destructive);
|
|
27
|
-
--color-accent-foreground: var(--accent-foreground);
|
|
28
|
-
--color-accent: var(--accent);
|
|
29
|
-
--color-muted-foreground: var(--muted-foreground);
|
|
30
|
-
--color-muted: var(--muted);
|
|
31
|
-
--color-secondary-foreground: var(--secondary-foreground);
|
|
32
|
-
--color-secondary: var(--secondary);
|
|
33
|
-
--color-primary-foreground: var(--primary-foreground);
|
|
34
|
-
--color-primary: var(--primary);
|
|
35
|
-
--color-popover-foreground: var(--popover-foreground);
|
|
36
|
-
--color-popover: var(--popover);
|
|
37
|
-
--color-card-foreground: var(--card-foreground);
|
|
38
|
-
--color-card: var(--card);
|
|
39
|
-
--radius-sm: calc(var(--radius) - 4px);
|
|
40
|
-
--radius-md: calc(var(--radius) - 2px);
|
|
41
|
-
--radius-lg: var(--radius);
|
|
42
|
-
--radius-xl: calc(var(--radius) + 4px);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
:root {
|
|
46
|
-
--radius: 0.625rem;
|
|
47
|
-
--background: oklch(1 0 0);
|
|
48
|
-
--foreground: oklch(0.145 0 0);
|
|
49
|
-
--card: oklch(1 0 0);
|
|
50
|
-
--card-foreground: oklch(0.145 0 0);
|
|
51
|
-
--popover: oklch(1 0 0);
|
|
52
|
-
--popover-foreground: oklch(0.145 0 0);
|
|
53
|
-
--primary: oklch(0.205 0 0);
|
|
54
|
-
--primary-foreground: oklch(0.985 0 0);
|
|
55
|
-
--secondary: oklch(0.97 0 0);
|
|
56
|
-
--secondary-foreground: oklch(0.205 0 0);
|
|
57
|
-
--muted: oklch(0.97 0 0);
|
|
58
|
-
--muted-foreground: oklch(0.556 0 0);
|
|
59
|
-
--accent: oklch(0.97 0 0);
|
|
60
|
-
--accent-foreground: oklch(0.205 0 0);
|
|
61
|
-
--destructive: oklch(0.577 0.245 27.325);
|
|
62
|
-
--border: oklch(0.922 0 0);
|
|
63
|
-
--input: oklch(0.922 0 0);
|
|
64
|
-
--ring: oklch(0.708 0 0);
|
|
65
|
-
--chart-1: oklch(0.646 0.222 41.116);
|
|
66
|
-
--chart-2: oklch(0.6 0.118 184.704);
|
|
67
|
-
--chart-3: oklch(0.398 0.07 227.392);
|
|
68
|
-
--chart-4: oklch(0.828 0.189 84.429);
|
|
69
|
-
--chart-5: oklch(0.769 0.188 70.08);
|
|
70
|
-
--sidebar: oklch(0.985 0 0);
|
|
71
|
-
--sidebar-foreground: oklch(0.145 0 0);
|
|
72
|
-
--sidebar-primary: oklch(0.205 0 0);
|
|
73
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
74
|
-
--sidebar-accent: oklch(0.97 0 0);
|
|
75
|
-
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
76
|
-
--sidebar-border: oklch(0.922 0 0);
|
|
77
|
-
--sidebar-ring: oklch(0.708 0 0);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.dark {
|
|
81
|
-
--background: oklch(0.145 0 0);
|
|
82
|
-
--foreground: oklch(0.985 0 0);
|
|
83
|
-
--card: oklch(0.205 0 0);
|
|
84
|
-
--card-foreground: oklch(0.985 0 0);
|
|
85
|
-
--popover: oklch(0.205 0 0);
|
|
86
|
-
--popover-foreground: oklch(0.985 0 0);
|
|
87
|
-
--primary: oklch(0.922 0 0);
|
|
88
|
-
--primary-foreground: oklch(0.205 0 0);
|
|
89
|
-
--secondary: oklch(0.269 0 0);
|
|
90
|
-
--secondary-foreground: oklch(0.985 0 0);
|
|
91
|
-
--muted: oklch(0.269 0 0);
|
|
92
|
-
--muted-foreground: oklch(0.708 0 0);
|
|
93
|
-
--accent: oklch(0.269 0 0);
|
|
94
|
-
--accent-foreground: oklch(0.985 0 0);
|
|
95
|
-
--destructive: oklch(0.704 0.191 22.216);
|
|
96
|
-
--border: oklch(1 0 0 / 10%);
|
|
97
|
-
--input: oklch(1 0 0 / 15%);
|
|
98
|
-
--ring: oklch(0.556 0 0);
|
|
99
|
-
--chart-1: oklch(0.488 0.243 264.376);
|
|
100
|
-
--chart-2: oklch(0.696 0.17 162.48);
|
|
101
|
-
--chart-3: oklch(0.769 0.188 70.08);
|
|
102
|
-
--chart-4: oklch(0.627 0.265 303.9);
|
|
103
|
-
--chart-5: oklch(0.645 0.246 16.439);
|
|
104
|
-
--sidebar: oklch(0.205 0 0);
|
|
105
|
-
--sidebar-foreground: oklch(0.985 0 0);
|
|
106
|
-
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
107
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
108
|
-
--sidebar-accent: oklch(0.269 0 0);
|
|
109
|
-
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
110
|
-
--sidebar-border: oklch(1 0 0 / 10%);
|
|
111
|
-
--sidebar-ring: oklch(0.556 0 0);
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
@layer base {
|
|
115
|
-
* {
|
|
116
|
-
@apply border-border outline-ring/50;
|
|
117
|
-
}
|
|
118
|
-
body {
|
|
119
|
-
@apply bg-background text-foreground;
|
|
120
|
-
}
|
|
121
|
-
}
|