@srcroot/ui 0.0.37 → 0.0.39

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.
@@ -0,0 +1,187 @@
1
+ /**
2
+ * @srcroot/ui - Orange Theme (Tailwind 4)
3
+ * Energetic and creative orange
4
+ */
5
+
6
+ @import "tailwindcss";
7
+
8
+ :root {
9
+ --background: hsl(0 0% 100%);
10
+ --foreground: hsl(24.6 95% 53.1%);
11
+
12
+ --card: hsl(0 0% 100%);
13
+ --card-foreground: hsl(24.6 95% 53.1%);
14
+
15
+ --popover: hsl(0 0% 100%);
16
+ --popover-foreground: hsl(24.6 95% 53.1%);
17
+
18
+ --primary: hsl(24.6 95% 53.1%);
19
+ --primary-foreground: hsl(355.7 100% 97.3%);
20
+
21
+ --secondary: hsl(24.6 30% 96.1%);
22
+ --secondary-foreground: hsl(24.6 95% 53.1%);
23
+
24
+ --muted: hsl(24.6 30% 96.1%);
25
+ --muted-foreground: hsl(24.6 10% 45%);
26
+
27
+ --accent: hsl(24.6 30% 96.1%);
28
+ --accent-foreground: hsl(24.6 95% 53.1%);
29
+
30
+ --destructive: hsl(0 84.2% 60.2%);
31
+ --destructive-foreground: hsl(0 0% 100%);
32
+
33
+ --success: hsl(142.1 76.2% 36.3%);
34
+ --success-foreground: hsl(0 0% 100%);
35
+
36
+ --warning: hsl(45.4 93.4% 47.5%);
37
+ --warning-foreground: hsl(24.6 95% 53.1%);
38
+
39
+ --info: hsl(201.3 96.3% 32.2%);
40
+ --info-foreground: hsl(0 0% 100%);
41
+
42
+ --border: hsl(24.6 20% 90%);
43
+ --input: hsl(24.6 20% 90%);
44
+ --ring: hsl(24.6 95% 53.1%);
45
+
46
+ --radius: 0.5rem;
47
+
48
+ --sidebar-width: 16rem;
49
+ --sidebar-width-mobile: 18rem;
50
+ --sidebar-width-collapsed: 3rem;
51
+ --sidebar-width-icon: 3rem;
52
+ --header-height: 3.5rem;
53
+
54
+ --sidebar-background: hsl(0 0% 98%);
55
+ --sidebar-foreground: hsl(24.6 95% 53.1%);
56
+ --sidebar-primary: hsl(24.6 95% 53.1%);
57
+ --sidebar-primary-foreground: hsl(355.7 100% 97.3%);
58
+ --sidebar-accent: hsl(24.6 30% 96.1%);
59
+ --sidebar-accent-foreground: hsl(24.6 95% 53.1%);
60
+ --sidebar-border: hsl(24.6 20% 90%);
61
+ --sidebar-ring: hsl(24.6 95% 53.1%);
62
+ }
63
+
64
+ @theme inline {
65
+ --color-border: var(--border);
66
+ --color-input: var(--input);
67
+ --color-ring: var(--ring);
68
+ --color-background: var(--background);
69
+ --color-foreground: var(--foreground);
70
+
71
+ --color-primary: var(--primary);
72
+ --color-primary-foreground: var(--primary-foreground);
73
+
74
+ --color-secondary: var(--secondary);
75
+ --color-secondary-foreground: var(--secondary-foreground);
76
+
77
+ --color-destructive: var(--destructive);
78
+ --color-destructive-foreground: var(--destructive-foreground);
79
+
80
+ --color-muted: var(--muted);
81
+ --color-muted-foreground: var(--muted-foreground);
82
+
83
+ --color-accent: var(--accent);
84
+ --color-accent-foreground: var(--accent-foreground);
85
+
86
+ --color-popover: var(--popover);
87
+ --color-popover-foreground: var(--popover-foreground);
88
+
89
+ --color-card: var(--card);
90
+ --color-card-foreground: var(--card-foreground);
91
+
92
+ --color-sidebar: var(--sidebar-background);
93
+ --color-sidebar-foreground: var(--sidebar-foreground);
94
+ --color-sidebar-primary: var(--sidebar-primary);
95
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
96
+ --color-sidebar-accent: var(--sidebar-accent);
97
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
98
+ --color-sidebar-border: var(--sidebar-border);
99
+ --color-sidebar-ring: var(--sidebar-ring);
100
+
101
+ --radius-lg: var(--radius);
102
+ --radius-md: calc(var(--radius) - 2px);
103
+ --radius-sm: calc(var(--radius) - 4px);
104
+
105
+ --animate-accordion-down: accordion-down 0.2s ease-out;
106
+ --animate-accordion-up: accordion-up 0.2s ease-out;
107
+
108
+ @keyframes accordion-down {
109
+ from {
110
+ height: 0;
111
+ }
112
+
113
+ to {
114
+ height: var(--radix-accordion-content-height);
115
+ }
116
+ }
117
+
118
+ @keyframes accordion-up {
119
+ from {
120
+ height: var(--radix-accordion-content-height);
121
+ }
122
+
123
+ to {
124
+ height: 0;
125
+ }
126
+ }
127
+ }
128
+
129
+ @media (prefers-color-scheme: dark) {
130
+ :root {
131
+ --background: hsl(24.6 40% 6%);
132
+ --foreground: hsl(355.7 100% 97.3%);
133
+
134
+ --card: hsl(24.6 40% 8%);
135
+ --card-foreground: hsl(355.7 100% 97.3%);
136
+
137
+ --popover: hsl(24.6 40% 8%);
138
+ --popover-foreground: hsl(355.7 100% 97.3%);
139
+
140
+ --primary: hsl(24.6 95% 53.1%);
141
+ --primary-foreground: hsl(355.7 100% 97.3%);
142
+
143
+ --secondary: hsl(24.6 30% 15%);
144
+ --secondary-foreground: hsl(355.7 100% 97.3%);
145
+
146
+ --muted: hsl(24.6 30% 15%);
147
+ --muted-foreground: hsl(24.6 20% 65%);
148
+
149
+ --accent: hsl(24.6 30% 15%);
150
+ --accent-foreground: hsl(355.7 100% 97.3%);
151
+
152
+ --destructive: hsl(0 62.8% 30.6%);
153
+ --destructive-foreground: hsl(0 0% 100%);
154
+
155
+ --success: hsl(142.1 70.6% 45.3%);
156
+ --success-foreground: hsl(24.6 95% 53.1%);
157
+
158
+ --warning: hsl(48 96.5% 53.1%);
159
+ --warning-foreground: hsl(24.6 95% 53.1%);
160
+
161
+ --info: hsl(199.4 95.5% 53.8%);
162
+ --info-foreground: hsl(24.6 95% 53.1%);
163
+
164
+ --border: hsl(24.6 30% 18%);
165
+ --input: hsl(24.6 30% 18%);
166
+ --ring: hsl(24.6 95% 53.1%);
167
+
168
+ --sidebar-background: hsl(24.6 40% 10%);
169
+ --sidebar-foreground: hsl(355.7 100% 97.3%);
170
+ --sidebar-primary: hsl(24.6 95% 53.1%);
171
+ --sidebar-primary-foreground: hsl(355.7 100% 97.3%);
172
+ --sidebar-accent: hsl(24.6 30% 15%);
173
+ --sidebar-accent-foreground: hsl(355.7 100% 97.3%);
174
+ --sidebar-border: hsl(24.6 30% 18%);
175
+ --sidebar-ring: hsl(24.6 95% 53.1%);
176
+ }
177
+ }
178
+
179
+ body {
180
+ background: var(--background);
181
+ color: var(--foreground);
182
+ font-family: Arial, Helvetica, sans-serif;
183
+ }
184
+
185
+ .bg-gradient-brand {
186
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
187
+ }
@@ -0,0 +1,187 @@
1
+ /**
2
+ * @srcroot/ui - Rose Theme (Tailwind 4)
3
+ * Soft and elegant pinkish-red
4
+ */
5
+
6
+ @import "tailwindcss";
7
+
8
+ :root {
9
+ --background: hsl(0 0% 100%);
10
+ --foreground: hsl(346.8 77.2% 49.8%);
11
+
12
+ --card: hsl(0 0% 100%);
13
+ --card-foreground: hsl(346.8 77.2% 49.8%);
14
+
15
+ --popover: hsl(0 0% 100%);
16
+ --popover-foreground: hsl(346.8 77.2% 49.8%);
17
+
18
+ --primary: hsl(346.8 77.2% 49.8%);
19
+ --primary-foreground: hsl(355.7 100% 97.3%);
20
+
21
+ --secondary: hsl(346.8 30% 96.1%);
22
+ --secondary-foreground: hsl(346.8 77.2% 49.8%);
23
+
24
+ --muted: hsl(346.8 30% 96.1%);
25
+ --muted-foreground: hsl(346.8 10% 45%);
26
+
27
+ --accent: hsl(346.8 30% 96.1%);
28
+ --accent-foreground: hsl(346.8 77.2% 49.8%);
29
+
30
+ --destructive: hsl(0 84.2% 60.2%);
31
+ --destructive-foreground: hsl(0 0% 100%);
32
+
33
+ --success: hsl(142.1 76.2% 36.3%);
34
+ --success-foreground: hsl(0 0% 100%);
35
+
36
+ --warning: hsl(45.4 93.4% 47.5%);
37
+ --warning-foreground: hsl(346.8 77.2% 49.8%);
38
+
39
+ --info: hsl(201.3 96.3% 32.2%);
40
+ --info-foreground: hsl(0 0% 100%);
41
+
42
+ --border: hsl(346.8 20% 90%);
43
+ --input: hsl(346.8 20% 90%);
44
+ --ring: hsl(346.8 77.2% 49.8%);
45
+
46
+ --radius: 0.5rem;
47
+
48
+ --sidebar-width: 16rem;
49
+ --sidebar-width-mobile: 18rem;
50
+ --sidebar-width-collapsed: 3rem;
51
+ --sidebar-width-icon: 3rem;
52
+ --header-height: 3.5rem;
53
+
54
+ --sidebar-background: hsl(0 0% 98%);
55
+ --sidebar-foreground: hsl(346.8 77.2% 49.8%);
56
+ --sidebar-primary: hsl(346.8 77.2% 49.8%);
57
+ --sidebar-primary-foreground: hsl(355.7 100% 97.3%);
58
+ --sidebar-accent: hsl(346.8 30% 96.1%);
59
+ --sidebar-accent-foreground: hsl(346.8 77.2% 49.8%);
60
+ --sidebar-border: hsl(346.8 20% 90%);
61
+ --sidebar-ring: hsl(346.8 77.2% 49.8%);
62
+ }
63
+
64
+ @theme inline {
65
+ --color-border: var(--border);
66
+ --color-input: var(--input);
67
+ --color-ring: var(--ring);
68
+ --color-background: var(--background);
69
+ --color-foreground: var(--foreground);
70
+
71
+ --color-primary: var(--primary);
72
+ --color-primary-foreground: var(--primary-foreground);
73
+
74
+ --color-secondary: var(--secondary);
75
+ --color-secondary-foreground: var(--secondary-foreground);
76
+
77
+ --color-destructive: var(--destructive);
78
+ --color-destructive-foreground: var(--destructive-foreground);
79
+
80
+ --color-muted: var(--muted);
81
+ --color-muted-foreground: var(--muted-foreground);
82
+
83
+ --color-accent: var(--accent);
84
+ --color-accent-foreground: var(--accent-foreground);
85
+
86
+ --color-popover: var(--popover);
87
+ --color-popover-foreground: var(--popover-foreground);
88
+
89
+ --color-card: var(--card);
90
+ --color-card-foreground: var(--card-foreground);
91
+
92
+ --color-sidebar: var(--sidebar-background);
93
+ --color-sidebar-foreground: var(--sidebar-foreground);
94
+ --color-sidebar-primary: var(--sidebar-primary);
95
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
96
+ --color-sidebar-accent: var(--sidebar-accent);
97
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
98
+ --color-sidebar-border: var(--sidebar-border);
99
+ --color-sidebar-ring: var(--sidebar-ring);
100
+
101
+ --radius-lg: var(--radius);
102
+ --radius-md: calc(var(--radius) - 2px);
103
+ --radius-sm: calc(var(--radius) - 4px);
104
+
105
+ --animate-accordion-down: accordion-down 0.2s ease-out;
106
+ --animate-accordion-up: accordion-up 0.2s ease-out;
107
+
108
+ @keyframes accordion-down {
109
+ from {
110
+ height: 0;
111
+ }
112
+
113
+ to {
114
+ height: var(--radix-accordion-content-height);
115
+ }
116
+ }
117
+
118
+ @keyframes accordion-up {
119
+ from {
120
+ height: var(--radix-accordion-content-height);
121
+ }
122
+
123
+ to {
124
+ height: 0;
125
+ }
126
+ }
127
+ }
128
+
129
+ @media (prefers-color-scheme: dark) {
130
+ :root {
131
+ --background: hsl(346.8 40% 6%);
132
+ --foreground: hsl(355.7 100% 97.3%);
133
+
134
+ --card: hsl(346.8 40% 8%);
135
+ --card-foreground: hsl(355.7 100% 97.3%);
136
+
137
+ --popover: hsl(346.8 40% 8%);
138
+ --popover-foreground: hsl(355.7 100% 97.3%);
139
+
140
+ --primary: hsl(346.8 77.2% 49.8%);
141
+ --primary-foreground: hsl(355.7 100% 97.3%);
142
+
143
+ --secondary: hsl(346.8 30% 15%);
144
+ --secondary-foreground: hsl(355.7 100% 97.3%);
145
+
146
+ --muted: hsl(346.8 30% 15%);
147
+ --muted-foreground: hsl(346.8 20% 65%);
148
+
149
+ --accent: hsl(346.8 30% 15%);
150
+ --accent-foreground: hsl(355.7 100% 97.3%);
151
+
152
+ --destructive: hsl(0 62.8% 30.6%);
153
+ --destructive-foreground: hsl(0 0% 100%);
154
+
155
+ --success: hsl(142.1 70.6% 45.3%);
156
+ --success-foreground: hsl(346.8 77.2% 49.8%);
157
+
158
+ --warning: hsl(48 96.5% 53.1%);
159
+ --warning-foreground: hsl(346.8 77.2% 49.8%);
160
+
161
+ --info: hsl(199.4 95.5% 53.8%);
162
+ --info-foreground: hsl(346.8 77.2% 49.8%);
163
+
164
+ --border: hsl(346.8 30% 18%);
165
+ --input: hsl(346.8 30% 18%);
166
+ --ring: hsl(346.8 77.2% 49.8%);
167
+
168
+ --sidebar-background: hsl(346.8 40% 10%);
169
+ --sidebar-foreground: hsl(355.7 100% 97.3%);
170
+ --sidebar-primary: hsl(346.8 77.2% 49.8%);
171
+ --sidebar-primary-foreground: hsl(355.7 100% 97.3%);
172
+ --sidebar-accent: hsl(346.8 30% 15%);
173
+ --sidebar-accent-foreground: hsl(355.7 100% 97.3%);
174
+ --sidebar-border: hsl(346.8 30% 18%);
175
+ --sidebar-ring: hsl(346.8 77.2% 49.8%);
176
+ }
177
+ }
178
+
179
+ body {
180
+ background: var(--background);
181
+ color: var(--foreground);
182
+ font-family: Arial, Helvetica, sans-serif;
183
+ }
184
+
185
+ .bg-gradient-brand {
186
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
187
+ }
@@ -180,4 +180,8 @@ body {
180
180
  background: var(--background);
181
181
  color: var(--foreground);
182
182
  font-family: Arial, Helvetica, sans-serif;
183
+ }
184
+
185
+ .bg-gradient-brand {
186
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
183
187
  }
@@ -180,4 +180,8 @@ body {
180
180
  background: var(--background);
181
181
  color: var(--foreground);
182
182
  font-family: Arial, Helvetica, sans-serif;
183
+ }
184
+
185
+ .bg-gradient-brand {
186
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
183
187
  }
@@ -0,0 +1,187 @@
1
+ /**
2
+ * @srcroot/ui - Violet Theme (Tailwind 4)
3
+ * Vibrant purple and magenta connected to the brand identity
4
+ */
5
+
6
+ @import "tailwindcss";
7
+
8
+ :root {
9
+ --background: hsl(0 0% 100%);
10
+ --foreground: hsl(246 80% 60%);
11
+
12
+ --card: hsl(0 0% 100%);
13
+ --card-foreground: hsl(246 80% 60%);
14
+
15
+ --popover: hsl(0 0% 100%);
16
+ --popover-foreground: hsl(246 80% 60%);
17
+
18
+ --primary: hsl(246 80% 60%);
19
+ --primary-foreground: hsl(0 0% 100%);
20
+
21
+ --secondary: hsl(320 85% 55%);
22
+ --secondary-foreground: hsl(0 0% 100%);
23
+
24
+ --muted: hsl(246 20% 96%);
25
+ --muted-foreground: hsl(246 10% 45%);
26
+
27
+ --accent: hsl(320 85% 55%);
28
+ --accent-foreground: hsl(0 0% 100%);
29
+
30
+ --destructive: hsl(0 84.2% 60.2%);
31
+ --destructive-foreground: hsl(0 0% 98%);
32
+
33
+ --success: hsl(142.1 76.2% 36.3%);
34
+ --success-foreground: hsl(0 0% 98%);
35
+
36
+ --warning: hsl(45.4 93.4% 47.5%);
37
+ --warning-foreground: hsl(246 80% 60%);
38
+
39
+ --info: hsl(201.3 96.3% 32.2%);
40
+ --info-foreground: hsl(0 0% 98%);
41
+
42
+ --border: hsl(246 15% 90%);
43
+ --input: hsl(246 15% 90%);
44
+ --ring: hsl(246 80% 60%);
45
+
46
+ --radius: 0.5rem;
47
+
48
+ --sidebar-width: 16rem;
49
+ --sidebar-width-mobile: 18rem;
50
+ --sidebar-width-collapsed: 3rem;
51
+ --sidebar-width-icon: 3rem;
52
+ --header-height: 3.5rem;
53
+
54
+ --sidebar-background: hsl(0 0% 98%);
55
+ --sidebar-foreground: hsl(246 80% 60%);
56
+ --sidebar-primary: hsl(246 80% 60%);
57
+ --sidebar-primary-foreground: hsl(0 0% 98%);
58
+ --sidebar-accent: hsl(320 85% 55%);
59
+ --sidebar-accent-foreground: hsl(0 0% 98%);
60
+ --sidebar-border: hsl(246 15% 90%);
61
+ --sidebar-ring: hsl(246 80% 60%);
62
+ }
63
+
64
+ @theme inline {
65
+ --color-border: var(--border);
66
+ --color-input: var(--input);
67
+ --color-ring: var(--ring);
68
+ --color-background: var(--background);
69
+ --color-foreground: var(--foreground);
70
+
71
+ --color-primary: var(--primary);
72
+ --color-primary-foreground: var(--primary-foreground);
73
+
74
+ --color-secondary: var(--secondary);
75
+ --color-secondary-foreground: var(--secondary-foreground);
76
+
77
+ --color-destructive: var(--destructive);
78
+ --color-destructive-foreground: var(--destructive-foreground);
79
+
80
+ --color-muted: var(--muted);
81
+ --color-muted-foreground: var(--muted-foreground);
82
+
83
+ --color-accent: var(--accent);
84
+ --color-accent-foreground: var(--accent-foreground);
85
+
86
+ --color-popover: var(--popover);
87
+ --color-popover-foreground: var(--popover-foreground);
88
+
89
+ --color-card: var(--card);
90
+ --color-card-foreground: var(--card-foreground);
91
+
92
+ --color-sidebar: var(--sidebar-background);
93
+ --color-sidebar-foreground: var(--sidebar-foreground);
94
+ --color-sidebar-primary: var(--sidebar-primary);
95
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
96
+ --color-sidebar-accent: var(--sidebar-accent);
97
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
98
+ --color-sidebar-border: var(--sidebar-border);
99
+ --color-sidebar-ring: var(--sidebar-ring);
100
+
101
+ --radius-lg: var(--radius);
102
+ --radius-md: calc(var(--radius) - 2px);
103
+ --radius-sm: calc(var(--radius) - 4px);
104
+
105
+ --animate-accordion-down: accordion-down 0.2s ease-out;
106
+ --animate-accordion-up: accordion-up 0.2s ease-out;
107
+
108
+ @keyframes accordion-down {
109
+ from {
110
+ height: 0;
111
+ }
112
+
113
+ to {
114
+ height: var(--radix-accordion-content-height);
115
+ }
116
+ }
117
+
118
+ @keyframes accordion-up {
119
+ from {
120
+ height: var(--radix-accordion-content-height);
121
+ }
122
+
123
+ to {
124
+ height: 0;
125
+ }
126
+ }
127
+ }
128
+
129
+ @media (prefers-color-scheme: dark) {
130
+ :root {
131
+ --background: hsl(246 20% 6%);
132
+ --foreground: hsl(0 0% 98%);
133
+
134
+ --card: hsl(246 20% 8%);
135
+ --card-foreground: hsl(0 0% 98%);
136
+
137
+ --popover: hsl(246 20% 8%);
138
+ --popover-foreground: hsl(0 0% 98%);
139
+
140
+ --primary: hsl(246 80% 65%);
141
+ --primary-foreground: hsl(246 20% 6%);
142
+
143
+ --secondary: hsl(320 85% 60%);
144
+ --secondary-foreground: hsl(0 0% 100%);
145
+
146
+ --muted: hsl(246 20% 15%);
147
+ --muted-foreground: hsl(246 10% 60%);
148
+
149
+ --accent: hsl(320 85% 60%);
150
+ --accent-foreground: hsl(0 0% 100%);
151
+
152
+ --destructive: hsl(0 62.8% 30.6%);
153
+ --destructive-foreground: hsl(0 0% 98%);
154
+
155
+ --success: hsl(142.1 70.6% 45.3%);
156
+ --success-foreground: hsl(246 80% 60%);
157
+
158
+ --warning: hsl(48 96.5% 53.1%);
159
+ --warning-foreground: hsl(246 80% 60%);
160
+
161
+ --info: hsl(199.4 95.5% 53.8%);
162
+ --info-foreground: hsl(246 80% 60%);
163
+
164
+ --border: hsl(246 20% 18%);
165
+ --input: hsl(246 20% 18%);
166
+ --ring: hsl(246 80% 65%);
167
+
168
+ --sidebar-background: hsl(246 20% 10%);
169
+ --sidebar-foreground: hsl(0 0% 98%);
170
+ --sidebar-primary: hsl(246 80% 65%);
171
+ --sidebar-primary-foreground: hsl(246 20% 6%);
172
+ --sidebar-accent: hsl(320 85% 60%);
173
+ --sidebar-accent-foreground: hsl(0 0% 100%);
174
+ --sidebar-border: hsl(246 20% 18%);
175
+ --sidebar-ring: hsl(246 80% 65%);
176
+ }
177
+ }
178
+
179
+ body {
180
+ background: var(--background);
181
+ color: var(--foreground);
182
+ font-family: Arial, Helvetica, sans-serif;
183
+ }
184
+
185
+ .bg-gradient-brand {
186
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
187
+ }
@@ -180,4 +180,8 @@ body {
180
180
  background: var(--background);
181
181
  color: var(--foreground);
182
182
  font-family: Arial, Helvetica, sans-serif;
183
+ }
184
+
185
+ .bg-gradient-brand {
186
+ background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
183
187
  }