@ojiepermana/angular-theme 22.0.35 → 22.0.36

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.
Files changed (58) hide show
  1. package/README.md +38 -19
  2. package/fesm2022/ojiepermana-angular-theme-layout-wrapper.mjs +10 -6
  3. package/fesm2022/ojiepermana-angular-theme-styles.mjs +356 -53
  4. package/package.json +3 -3
  5. package/styles/README.md +10 -3
  6. package/styles/css/{seasonal/base → base}/tailwind.css +9 -5
  7. package/styles/css/{seasonal/base → base}/theme.css +1 -6
  8. package/styles/css/{seasonal/base → base}/tokens.css +26 -16
  9. package/styles/css/color/amber.css +50 -0
  10. package/styles/css/color/blue.css +50 -0
  11. package/styles/css/color/brand.css +16 -0
  12. package/styles/css/color/cyan.css +50 -0
  13. package/styles/css/color/emerald.css +50 -0
  14. package/styles/css/color/fuchsia.css +50 -0
  15. package/styles/css/color/green.css +50 -0
  16. package/styles/css/color/index.css +19 -0
  17. package/styles/css/color/indigo.css +50 -0
  18. package/styles/css/color/lime.css +50 -0
  19. package/styles/css/color/orange.css +50 -0
  20. package/styles/css/color/pink.css +50 -0
  21. package/styles/css/color/purple.css +50 -0
  22. package/styles/css/color/red.css +50 -0
  23. package/styles/css/color/rose.css +50 -0
  24. package/styles/css/color/sky.css +50 -0
  25. package/styles/css/color/teal.css +50 -0
  26. package/styles/css/color/violet.css +50 -0
  27. package/styles/css/color/yellow.css +50 -0
  28. package/styles/css/index.css +15 -6
  29. package/styles/css/neutral/gray.css +34 -0
  30. package/styles/css/neutral/index.css +11 -0
  31. package/styles/css/neutral/mauve.css +34 -0
  32. package/styles/css/neutral/mist.css +34 -0
  33. package/styles/css/neutral/neutral.css +34 -0
  34. package/styles/css/neutral/olive.css +34 -0
  35. package/styles/css/neutral/slate.css +34 -0
  36. package/styles/css/neutral/stone.css +34 -0
  37. package/styles/css/neutral/taupe.css +34 -0
  38. package/styles/css/neutral/zinc.css +34 -0
  39. package/styles/css/radius/index.css +29 -0
  40. package/styles/css/space/index.css +24 -0
  41. package/types/ojiepermana-angular-theme-layout-wrapper.d.ts +6 -6
  42. package/types/ojiepermana-angular-theme-styles.d.ts +168 -37
  43. package/styles/css/seasonal/ied/package.css +0 -4
  44. package/styles/css/seasonal/ied/theme.css +0 -78
  45. package/styles/css/seasonal/imlek/components.css +0 -87
  46. package/styles/css/seasonal/imlek/package.css +0 -6
  47. package/styles/css/seasonal/imlek/tailwind.css +0 -144
  48. package/styles/css/seasonal/imlek/theme.css +0 -95
  49. package/styles/css/seasonal/imlek/tokens.css +0 -152
  50. package/styles/css/seasonal/index.css +0 -6
  51. package/styles/css/seasonal/natal/package.css +0 -4
  52. package/styles/css/seasonal/natal/theme.css +0 -78
  53. package/styles/css/seasonal/new-year/package.css +0 -4
  54. package/styles/css/seasonal/new-year/theme.css +0 -78
  55. package/styles/css/seasonal/ramadhan/package.css +0 -4
  56. package/styles/css/seasonal/ramadhan/theme.css +0 -78
  57. /package/styles/css/{seasonal/base → base}/components.css +0 -0
  58. /package/styles/css/{seasonal/base → base}/package.css +0 -0
@@ -6,7 +6,7 @@
6
6
  * Usage (styles.css):
7
7
  * @import '@ojiepermana/angular-theme/theme.css';
8
8
  * @import 'tailwindcss';
9
- * @import '@ojiepermana/angular-theme/styles/css/seasonal/base/tailwind.css';
9
+ * @import '@ojiepermana/angular-theme/styles/css/base/tailwind.css';
10
10
  *
11
11
  * Maps the 3-layer HSL CSS variables onto Tailwind v4 design tokens so
12
12
  * utilities like `bg-primary`, `text-foreground`, `rounded-md`, and
@@ -27,6 +27,9 @@
27
27
  --color-primary: hsl(var(--primary));
28
28
  --color-primary-foreground: hsl(var(--primary-foreground));
29
29
 
30
+ --color-brand: hsl(var(--brand));
31
+ --color-brand-foreground: hsl(var(--brand-foreground));
32
+
30
33
  --color-secondary: hsl(var(--secondary));
31
34
  --color-secondary-foreground: hsl(var(--secondary-foreground));
32
35
 
@@ -123,6 +126,11 @@
123
126
  --leading-relaxed: var(--line-height-relaxed);
124
127
  --leading-loose: var(--line-height-loose);
125
128
 
129
+ /* Global spacing unit — Tailwind derives every padding, margin, gap, width and
130
+ * height utility from this. Wired to --spacing-base so the theme-space density
131
+ * axis rescales all spacing at runtime (default 0.25rem = unchanged). */
132
+ --spacing: var(--spacing-base);
133
+
126
134
  --spacing-control-xs: var(--control-height-xs);
127
135
  --spacing-control-sm: var(--control-height-sm);
128
136
  --spacing-control-md: var(--control-height-md);
@@ -138,7 +146,3 @@
138
146
  --font-sans: var(--theme-font-sans);
139
147
  --font-mono: var(--theme-font-mono);
140
148
  }
141
-
142
- @utility rounded-base {
143
- border-radius: var(--rounded-base);
144
- }
@@ -5,9 +5,8 @@
5
5
 
6
6
  @layer tokens {
7
7
  :root {
8
- --radius-base: var(--theme-radius-base, 0.625rem);
8
+ --radius-base: 0.625rem;
9
9
  --radius-none: 0px;
10
- --rounded-base: var(--radius-none);
11
10
  --scrollbar-size: 0.5rem;
12
11
  --scrollbar-radius: 9999px;
13
12
  --scrollbar-track: var(--primary) / var(--opacity-10);
@@ -177,10 +176,6 @@
177
176
  * @theme mapping re-emits --shadow-*: var(--theme-shadow-*), so an alias
178
177
  * back to --shadow-* forms a var() cycle. */
179
178
  --theme-shadow-xs: var(--shadow-xs-base);
180
- --theme-radius-xs: var(--radius-xs);
181
- --theme-radius-sm: var(--radius-sm);
182
- --theme-radius-md: var(--radius-base);
183
- --theme-radius-lg: var(--radius-xl);
184
179
  --border-width: var(--border-width-base);
185
180
  --theme-shadow-sm: var(--shadow-base);
186
181
  --theme-shadow: var(--shadow-base);
@@ -24,24 +24,27 @@
24
24
  --border: 211 28% 82%;
25
25
  --input: 211 28% 82%;
26
26
 
27
- --primary: 211 95% 29%;
27
+ /* Base accent = near-black neutral (FluxUI "base"); inverts to near-white in
28
+ * dark mode (see :root[data-mode='dark'] below). Accent palettes
29
+ * (theme-color) override these at higher specificity. */
30
+ --primary: 240 6% 10%;
28
31
  --primary-foreground: 0 0% 100%;
29
- --accent: 211 95% 96%;
30
- --accent-foreground: 211 95% 22%;
31
- --secondary: 211 24% 95%;
32
- --secondary-foreground: 211 75% 24%;
33
- --ring: 211 95% 29%;
32
+ --accent: 210 30% 95%;
33
+ --accent-foreground: 222 20% 14%;
34
+ --secondary: 210 24% 95%;
35
+ --secondary-foreground: 222 20% 18%;
36
+ --ring: 222 18% 16%;
37
+
38
+ /* Brand identity color — set by the consumer via ThemeBrandService
39
+ * (provideUiTheme({ brand }) or setBrand()). Concrete (not var(--primary))
40
+ * so the theme-color='brand' preset never forms a var() cycle. Defaults to
41
+ * the base accent and inverts in dark mode. */
42
+ --brand: 240 6% 10%;
43
+ --brand-foreground: 0 0% 100%;
34
44
 
35
45
  --radius-base: 0.625rem;
36
46
  --radius: var(--radius-base);
37
47
 
38
- /* Deprecated: use the --radius-* tokens directly. */
39
- --theme-radius-base: var(--radius-base);
40
- --theme-radius-xs: var(--radius-xs);
41
- --theme-radius-sm: var(--radius-sm);
42
- --theme-radius-md: var(--radius-base);
43
- --theme-radius-lg: var(--radius-base);
44
-
45
48
  --border-width-base: 1px;
46
49
  --border-width: var(--border-width-base);
47
50
 
@@ -128,10 +131,17 @@
128
131
  --border: 211 24% 24%;
129
132
  --input: 211 24% 24%;
130
133
 
131
- --accent: 211 58% 18%;
132
- --accent-foreground: 211 90% 84%;
134
+ /* Base accent inverts: near-white primary on dark. */
135
+ --primary: 0 0% 98%;
136
+ --primary-foreground: 222 20% 12%;
137
+ --accent: 211 40% 16%;
138
+ --accent-foreground: 0 0% 98%;
133
139
  --secondary: 211 24% 18%;
134
- --secondary-foreground: 211 82% 84%;
140
+ --secondary-foreground: 0 0% 96%;
141
+ --ring: 0 0% 85%;
142
+
143
+ --brand: 0 0% 98%;
144
+ --brand-foreground: 222 20% 12%;
135
145
 
136
146
  --shadow-base: 0 1px 0 0 hsl(210 40% 96% / 0.08);
137
147
  --shadow-sm: var(--shadow-base);
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: amber. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='amber'][data-mode='light'] {
6
+ --background: 38 28% 98%;
7
+ --foreground: 38 31% 16%;
8
+ --surface: 38 32% 95%;
9
+ --surface-foreground: 38 31% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 38 31% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 38 31% 16%;
14
+ --muted: 38 28% 95%;
15
+ --muted-foreground: 38 18% 40%;
16
+ --border: 38 28% 87%;
17
+ --input: 38 28% 87%;
18
+ --primary: 38 92% 48%;
19
+ --primary-foreground: 0 0% 12%;
20
+ --accent: 38 55% 94%;
21
+ --accent-foreground: 38 92% 32%;
22
+ --secondary: 38 37% 93%;
23
+ --secondary-foreground: 38 92% 28%;
24
+ --ring: 38 92% 48%;
25
+ --highlight: 38 92% 64%;
26
+ }
27
+
28
+ html[theme-color='amber'][data-mode='dark'] {
29
+ --background: 38 28% 8%;
30
+ --foreground: 38 14% 96%;
31
+ --surface: 38 23% 12%;
32
+ --surface-foreground: 38 14% 96%;
33
+ --card: 38 28% 9%;
34
+ --card-foreground: 38 14% 96%;
35
+ --popover: 38 28% 9%;
36
+ --popover-foreground: 38 14% 96%;
37
+ --muted: 38 23% 16%;
38
+ --muted-foreground: 38 18% 64%;
39
+ --border: 38 23% 18%;
40
+ --input: 38 23% 18%;
41
+ --primary: 38 92% 58%;
42
+ --primary-foreground: 0 0% 10%;
43
+ --accent: 38 46% 18%;
44
+ --accent-foreground: 38 74% 80%;
45
+ --secondary: 38 37% 18%;
46
+ --secondary-foreground: 38 64% 82%;
47
+ --ring: 38 92% 58%;
48
+ --highlight: 38 92% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: blue. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='blue'][data-mode='light'] {
6
+ --background: 221 25% 98%;
7
+ --foreground: 221 29% 16%;
8
+ --surface: 221 29% 95%;
9
+ --surface-foreground: 221 29% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 221 29% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 221 29% 16%;
14
+ --muted: 221 25% 95%;
15
+ --muted-foreground: 221 17% 40%;
16
+ --border: 221 25% 87%;
17
+ --input: 221 25% 87%;
18
+ --primary: 221 83% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 221 50% 94%;
21
+ --accent-foreground: 221 83% 32%;
22
+ --secondary: 221 33% 93%;
23
+ --secondary-foreground: 221 83% 28%;
24
+ --ring: 221 83% 48%;
25
+ --highlight: 221 83% 64%;
26
+ }
27
+
28
+ html[theme-color='blue'][data-mode='dark'] {
29
+ --background: 221 25% 8%;
30
+ --foreground: 221 12% 96%;
31
+ --surface: 221 21% 12%;
32
+ --surface-foreground: 221 12% 96%;
33
+ --card: 221 25% 9%;
34
+ --card-foreground: 221 12% 96%;
35
+ --popover: 221 25% 9%;
36
+ --popover-foreground: 221 12% 96%;
37
+ --muted: 221 21% 16%;
38
+ --muted-foreground: 221 17% 64%;
39
+ --border: 221 21% 18%;
40
+ --input: 221 21% 18%;
41
+ --primary: 221 83% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 221 42% 18%;
44
+ --accent-foreground: 221 66% 80%;
45
+ --secondary: 221 33% 18%;
46
+ --secondary-foreground: 221 58% 82%;
47
+ --ring: 221 83% 58%;
48
+ --highlight: 221 83% 58%;
49
+ }
50
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Accent theme: brand. Maps the chromatic accent tokens to the consumer's
3
+ * --brand / --brand-foreground (set by ThemeBrandService). Neutrals are left to
4
+ * the base/neutral axis. Hand-written — not emitted by the generated index.
5
+ */
6
+ @layer tokens {
7
+ html[theme-color='brand'][data-mode='light'],
8
+ html[theme-color='brand'][data-mode='dark'] {
9
+ --primary: var(--brand);
10
+ --primary-foreground: var(--brand-foreground);
11
+ --ring: var(--brand);
12
+ --accent-foreground: var(--brand);
13
+ --secondary-foreground: var(--brand);
14
+ --highlight: var(--brand);
15
+ }
16
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: cyan. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='cyan'][data-mode='light'] {
6
+ --background: 191 26% 98%;
7
+ --foreground: 191 29% 16%;
8
+ --surface: 191 30% 95%;
9
+ --surface-foreground: 191 29% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 191 29% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 191 29% 16%;
14
+ --muted: 191 26% 95%;
15
+ --muted-foreground: 191 17% 40%;
16
+ --border: 191 26% 87%;
17
+ --input: 191 26% 87%;
18
+ --primary: 191 85% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 191 51% 94%;
21
+ --accent-foreground: 191 85% 32%;
22
+ --secondary: 191 34% 93%;
23
+ --secondary-foreground: 191 85% 28%;
24
+ --ring: 191 85% 48%;
25
+ --highlight: 191 85% 64%;
26
+ }
27
+
28
+ html[theme-color='cyan'][data-mode='dark'] {
29
+ --background: 191 26% 8%;
30
+ --foreground: 191 13% 96%;
31
+ --surface: 191 21% 12%;
32
+ --surface-foreground: 191 13% 96%;
33
+ --card: 191 26% 9%;
34
+ --card-foreground: 191 13% 96%;
35
+ --popover: 191 26% 9%;
36
+ --popover-foreground: 191 13% 96%;
37
+ --muted: 191 21% 16%;
38
+ --muted-foreground: 191 17% 64%;
39
+ --border: 191 21% 18%;
40
+ --input: 191 21% 18%;
41
+ --primary: 191 85% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 191 43% 18%;
44
+ --accent-foreground: 191 68% 80%;
45
+ --secondary: 191 34% 18%;
46
+ --secondary-foreground: 191 59% 82%;
47
+ --ring: 191 85% 58%;
48
+ --highlight: 191 85% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: emerald. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='emerald'][data-mode='light'] {
6
+ --background: 160 23% 98%;
7
+ --foreground: 160 28% 16%;
8
+ --surface: 160 27% 95%;
9
+ --surface-foreground: 160 28% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 160 28% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 160 28% 16%;
14
+ --muted: 160 23% 95%;
15
+ --muted-foreground: 160 16% 40%;
16
+ --border: 160 23% 87%;
17
+ --input: 160 23% 87%;
18
+ --primary: 160 78% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 160 47% 94%;
21
+ --accent-foreground: 160 78% 32%;
22
+ --secondary: 160 31% 93%;
23
+ --secondary-foreground: 160 78% 28%;
24
+ --ring: 160 78% 48%;
25
+ --highlight: 160 78% 64%;
26
+ }
27
+
28
+ html[theme-color='emerald'][data-mode='dark'] {
29
+ --background: 160 23% 8%;
30
+ --foreground: 160 12% 96%;
31
+ --surface: 160 20% 12%;
32
+ --surface-foreground: 160 12% 96%;
33
+ --card: 160 23% 9%;
34
+ --card-foreground: 160 12% 96%;
35
+ --popover: 160 23% 9%;
36
+ --popover-foreground: 160 12% 96%;
37
+ --muted: 160 20% 16%;
38
+ --muted-foreground: 160 16% 64%;
39
+ --border: 160 20% 18%;
40
+ --input: 160 20% 18%;
41
+ --primary: 160 78% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 160 39% 18%;
44
+ --accent-foreground: 160 62% 80%;
45
+ --secondary: 160 31% 18%;
46
+ --secondary-foreground: 160 55% 82%;
47
+ --ring: 160 78% 58%;
48
+ --highlight: 160 78% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: fuchsia. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='fuchsia'][data-mode='light'] {
6
+ --background: 292 24% 98%;
7
+ --foreground: 292 28% 16%;
8
+ --surface: 292 28% 95%;
9
+ --surface-foreground: 292 28% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 292 28% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 292 28% 16%;
14
+ --muted: 292 24% 95%;
15
+ --muted-foreground: 292 16% 40%;
16
+ --border: 292 24% 87%;
17
+ --input: 292 24% 87%;
18
+ --primary: 292 80% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 292 48% 94%;
21
+ --accent-foreground: 292 80% 32%;
22
+ --secondary: 292 32% 93%;
23
+ --secondary-foreground: 292 80% 28%;
24
+ --ring: 292 80% 48%;
25
+ --highlight: 292 80% 64%;
26
+ }
27
+
28
+ html[theme-color='fuchsia'][data-mode='dark'] {
29
+ --background: 292 24% 8%;
30
+ --foreground: 292 12% 96%;
31
+ --surface: 292 20% 12%;
32
+ --surface-foreground: 292 12% 96%;
33
+ --card: 292 24% 9%;
34
+ --card-foreground: 292 12% 96%;
35
+ --popover: 292 24% 9%;
36
+ --popover-foreground: 292 12% 96%;
37
+ --muted: 292 20% 16%;
38
+ --muted-foreground: 292 16% 64%;
39
+ --border: 292 20% 18%;
40
+ --input: 292 20% 18%;
41
+ --primary: 292 80% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 292 40% 18%;
44
+ --accent-foreground: 292 64% 80%;
45
+ --secondary: 292 32% 18%;
46
+ --secondary-foreground: 292 56% 82%;
47
+ --ring: 292 80% 58%;
48
+ --highlight: 292 80% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: green. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='green'][data-mode='light'] {
6
+ --background: 142 21% 98%;
7
+ --foreground: 142 25% 16%;
8
+ --surface: 142 24% 95%;
9
+ --surface-foreground: 142 25% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 142 25% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 142 25% 16%;
14
+ --muted: 142 21% 95%;
15
+ --muted-foreground: 142 14% 40%;
16
+ --border: 142 21% 87%;
17
+ --input: 142 21% 87%;
18
+ --primary: 142 69% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 142 41% 94%;
21
+ --accent-foreground: 142 69% 32%;
22
+ --secondary: 142 28% 93%;
23
+ --secondary-foreground: 142 69% 28%;
24
+ --ring: 142 69% 48%;
25
+ --highlight: 142 69% 64%;
26
+ }
27
+
28
+ html[theme-color='green'][data-mode='dark'] {
29
+ --background: 142 21% 8%;
30
+ --foreground: 142 10% 96%;
31
+ --surface: 142 17% 12%;
32
+ --surface-foreground: 142 10% 96%;
33
+ --card: 142 21% 9%;
34
+ --card-foreground: 142 10% 96%;
35
+ --popover: 142 21% 9%;
36
+ --popover-foreground: 142 10% 96%;
37
+ --muted: 142 17% 16%;
38
+ --muted-foreground: 142 14% 64%;
39
+ --border: 142 17% 18%;
40
+ --input: 142 17% 18%;
41
+ --primary: 142 69% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 142 35% 18%;
44
+ --accent-foreground: 142 55% 80%;
45
+ --secondary: 142 28% 18%;
46
+ --secondary-foreground: 142 48% 82%;
47
+ --ring: 142 69% 58%;
48
+ --highlight: 142 69% 58%;
49
+ }
50
+ }
@@ -0,0 +1,19 @@
1
+ /* Accent palettes (theme-color). Generated index — base = core theme (no file). */
2
+ @import './red.css';
3
+ @import './orange.css';
4
+ @import './amber.css';
5
+ @import './yellow.css';
6
+ @import './lime.css';
7
+ @import './green.css';
8
+ @import './emerald.css';
9
+ @import './teal.css';
10
+ @import './cyan.css';
11
+ @import './sky.css';
12
+ @import './blue.css';
13
+ @import './indigo.css';
14
+ @import './violet.css';
15
+ @import './purple.css';
16
+ @import './fuchsia.css';
17
+ @import './pink.css';
18
+ @import './rose.css';
19
+ @import './brand.css';
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: indigo. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='indigo'][data-mode='light'] {
6
+ --background: 239 23% 98%;
7
+ --foreground: 239 28% 16%;
8
+ --surface: 239 27% 95%;
9
+ --surface-foreground: 239 28% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 239 28% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 239 28% 16%;
14
+ --muted: 239 23% 95%;
15
+ --muted-foreground: 239 16% 40%;
16
+ --border: 239 23% 87%;
17
+ --input: 239 23% 87%;
18
+ --primary: 239 78% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 239 47% 94%;
21
+ --accent-foreground: 239 78% 32%;
22
+ --secondary: 239 31% 93%;
23
+ --secondary-foreground: 239 78% 28%;
24
+ --ring: 239 78% 48%;
25
+ --highlight: 239 78% 64%;
26
+ }
27
+
28
+ html[theme-color='indigo'][data-mode='dark'] {
29
+ --background: 239 23% 8%;
30
+ --foreground: 239 12% 96%;
31
+ --surface: 239 20% 12%;
32
+ --surface-foreground: 239 12% 96%;
33
+ --card: 239 23% 9%;
34
+ --card-foreground: 239 12% 96%;
35
+ --popover: 239 23% 9%;
36
+ --popover-foreground: 239 12% 96%;
37
+ --muted: 239 20% 16%;
38
+ --muted-foreground: 239 16% 64%;
39
+ --border: 239 20% 18%;
40
+ --input: 239 20% 18%;
41
+ --primary: 239 78% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 239 39% 18%;
44
+ --accent-foreground: 239 62% 80%;
45
+ --secondary: 239 31% 18%;
46
+ --secondary-foreground: 239 55% 82%;
47
+ --ring: 239 78% 58%;
48
+ --highlight: 239 78% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: lime. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='lime'][data-mode='light'] {
6
+ --background: 84 23% 98%;
7
+ --foreground: 84 28% 16%;
8
+ --surface: 84 27% 95%;
9
+ --surface-foreground: 84 28% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 84 28% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 84 28% 16%;
14
+ --muted: 84 23% 95%;
15
+ --muted-foreground: 84 16% 40%;
16
+ --border: 84 23% 87%;
17
+ --input: 84 23% 87%;
18
+ --primary: 84 78% 48%;
19
+ --primary-foreground: 0 0% 12%;
20
+ --accent: 84 47% 94%;
21
+ --accent-foreground: 84 78% 32%;
22
+ --secondary: 84 31% 93%;
23
+ --secondary-foreground: 84 78% 28%;
24
+ --ring: 84 78% 48%;
25
+ --highlight: 84 78% 64%;
26
+ }
27
+
28
+ html[theme-color='lime'][data-mode='dark'] {
29
+ --background: 84 23% 8%;
30
+ --foreground: 84 12% 96%;
31
+ --surface: 84 20% 12%;
32
+ --surface-foreground: 84 12% 96%;
33
+ --card: 84 23% 9%;
34
+ --card-foreground: 84 12% 96%;
35
+ --popover: 84 23% 9%;
36
+ --popover-foreground: 84 12% 96%;
37
+ --muted: 84 20% 16%;
38
+ --muted-foreground: 84 16% 64%;
39
+ --border: 84 20% 18%;
40
+ --input: 84 20% 18%;
41
+ --primary: 84 78% 58%;
42
+ --primary-foreground: 0 0% 10%;
43
+ --accent: 84 39% 18%;
44
+ --accent-foreground: 84 62% 80%;
45
+ --secondary: 84 31% 18%;
46
+ --secondary-foreground: 84 55% 82%;
47
+ --ring: 84 78% 58%;
48
+ --highlight: 84 78% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: orange. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='orange'][data-mode='light'] {
6
+ --background: 24 29% 98%;
7
+ --foreground: 24 32% 16%;
8
+ --surface: 24 33% 95%;
9
+ --surface-foreground: 24 32% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 24 32% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 24 32% 16%;
14
+ --muted: 24 29% 95%;
15
+ --muted-foreground: 24 19% 40%;
16
+ --border: 24 29% 87%;
17
+ --input: 24 29% 87%;
18
+ --primary: 24 95% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 24 57% 94%;
21
+ --accent-foreground: 24 95% 32%;
22
+ --secondary: 24 38% 93%;
23
+ --secondary-foreground: 24 95% 28%;
24
+ --ring: 24 95% 48%;
25
+ --highlight: 24 95% 64%;
26
+ }
27
+
28
+ html[theme-color='orange'][data-mode='dark'] {
29
+ --background: 24 29% 8%;
30
+ --foreground: 24 14% 96%;
31
+ --surface: 24 24% 12%;
32
+ --surface-foreground: 24 14% 96%;
33
+ --card: 24 29% 9%;
34
+ --card-foreground: 24 14% 96%;
35
+ --popover: 24 29% 9%;
36
+ --popover-foreground: 24 14% 96%;
37
+ --muted: 24 24% 16%;
38
+ --muted-foreground: 24 19% 64%;
39
+ --border: 24 24% 18%;
40
+ --input: 24 24% 18%;
41
+ --primary: 24 95% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 24 48% 18%;
44
+ --accent-foreground: 24 76% 80%;
45
+ --secondary: 24 38% 18%;
46
+ --secondary-foreground: 24 67% 82%;
47
+ --ring: 24 95% 58%;
48
+ --highlight: 24 95% 58%;
49
+ }
50
+ }
@@ -0,0 +1,50 @@
1
+ /**
2
+ * Accent theme: pink. Generated by scripts/gen-theme-colors.mjs — do not edit.
3
+ */
4
+ @layer tokens {
5
+ html[theme-color='pink'][data-mode='light'] {
6
+ --background: 330 23% 98%;
7
+ --foreground: 330 28% 16%;
8
+ --surface: 330 27% 95%;
9
+ --surface-foreground: 330 28% 16%;
10
+ --card: 0 0% 100%;
11
+ --card-foreground: 330 28% 16%;
12
+ --popover: 0 0% 100%;
13
+ --popover-foreground: 330 28% 16%;
14
+ --muted: 330 23% 95%;
15
+ --muted-foreground: 330 16% 40%;
16
+ --border: 330 23% 87%;
17
+ --input: 330 23% 87%;
18
+ --primary: 330 78% 48%;
19
+ --primary-foreground: 0 0% 100%;
20
+ --accent: 330 47% 94%;
21
+ --accent-foreground: 330 78% 32%;
22
+ --secondary: 330 31% 93%;
23
+ --secondary-foreground: 330 78% 28%;
24
+ --ring: 330 78% 48%;
25
+ --highlight: 330 78% 64%;
26
+ }
27
+
28
+ html[theme-color='pink'][data-mode='dark'] {
29
+ --background: 330 23% 8%;
30
+ --foreground: 330 12% 96%;
31
+ --surface: 330 20% 12%;
32
+ --surface-foreground: 330 12% 96%;
33
+ --card: 330 23% 9%;
34
+ --card-foreground: 330 12% 96%;
35
+ --popover: 330 23% 9%;
36
+ --popover-foreground: 330 12% 96%;
37
+ --muted: 330 20% 16%;
38
+ --muted-foreground: 330 16% 64%;
39
+ --border: 330 20% 18%;
40
+ --input: 330 20% 18%;
41
+ --primary: 330 78% 58%;
42
+ --primary-foreground: 0 0% 100%;
43
+ --accent: 330 39% 18%;
44
+ --accent-foreground: 330 62% 80%;
45
+ --secondary: 330 31% 18%;
46
+ --secondary-foreground: 330 55% 82%;
47
+ --ring: 330 78% 58%;
48
+ --highlight: 330 78% 58%;
49
+ }
50
+ }