@cloudvoyant/vortex-ui 0.17.0-rc.202609040136.45c8986
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/dist/index.cjs +1675 -0
- package/dist/index.d.cts +723 -0
- package/dist/index.d.ts +723 -0
- package/dist/index.js +1383 -0
- package/package.json +67 -0
- package/src/components.css +36 -0
- package/src/theme.css +189 -0
- package/src/themes/amber-minimal.css +83 -0
- package/src/themes/amethyst-haze.css +83 -0
- package/src/themes/anthropic.css +60 -0
- package/src/themes/anyscale.css +73 -0
- package/src/themes/bold-tech.css +82 -0
- package/src/themes/bubblegum.css +85 -0
- package/src/themes/caffeine.css +73 -0
- package/src/themes/candyland.css +75 -0
- package/src/themes/catppuccin.css +81 -0
- package/src/themes/claude.css +81 -0
- package/src/themes/claymorphism.css +83 -0
- package/src/themes/clean-slate.css +82 -0
- package/src/themes/cosmic-night.css +82 -0
- package/src/themes/cyberpunk.css +81 -0
- package/src/themes/darkmatter.css +84 -0
- package/src/themes/default.css +62 -0
- package/src/themes/doom-64.css +95 -0
- package/src/themes/elegant-luxury.css +82 -0
- package/src/themes/graphite.css +59 -0
- package/src/themes/green.css +57 -0
- package/src/themes/kodama-grove.css +81 -0
- package/src/themes/lambda.css +63 -0
- package/src/themes/mdbook.css +108 -0
- package/src/themes/midnight-bloom.css +82 -0
- package/src/themes/mocha-mousse.css +82 -0
- package/src/themes/modern-minimal.css +76 -0
- package/src/themes/mono.css +81 -0
- package/src/themes/nature.css +76 -0
- package/src/themes/neo-brutalism.css +81 -0
- package/src/themes/northern-lights.css +76 -0
- package/src/themes/notebook.css +95 -0
- package/src/themes/ocean-breeze.css +82 -0
- package/src/themes/openai.css +59 -0
- package/src/themes/pastel-dreams.css +82 -0
- package/src/themes/perpetuity.css +91 -0
- package/src/themes/quantum-rose.css +85 -0
- package/src/themes/retro-arcade.css +81 -0
- package/src/themes/rose.css +57 -0
- package/src/themes/sage-garden.css +84 -0
- package/src/themes/slate.css +57 -0
- package/src/themes/soft-pop.css +95 -0
- package/src/themes/solar-dusk.css +83 -0
- package/src/themes/starry-night.css +74 -0
- package/src/themes/sunset-horizon.css +82 -0
- package/src/themes/supabase.css +83 -0
- package/src/themes/t3-chat.css +72 -0
- package/src/themes/tangerine.css +81 -0
- package/src/themes/twitter.css +82 -0
- package/src/themes/vercel.css +85 -0
- package/src/themes/vintage-paper.css +82 -0
- package/src/themes/violet-bloom.css +95 -0
- package/src/themes/vitepress.css +60 -0
- package/src/themes/vortex-ui.css +88 -0
- package/src/themes.css +4184 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* mdBook's built-in light theme and its default navy dark theme. */
|
|
2
|
+
.theme-mdbook {
|
|
3
|
+
--background: #ffffff;
|
|
4
|
+
--foreground: #000000;
|
|
5
|
+
--card: #ffffff;
|
|
6
|
+
--card-foreground: #000000;
|
|
7
|
+
--popover: #fafafa;
|
|
8
|
+
--popover-foreground: #000000;
|
|
9
|
+
--primary: #20609f;
|
|
10
|
+
--primary-foreground: #ffffff;
|
|
11
|
+
--secondary: #f4f4f4;
|
|
12
|
+
--secondary-foreground: #000000;
|
|
13
|
+
--muted: #f4f4f4;
|
|
14
|
+
--muted-foreground: #747474;
|
|
15
|
+
--accent: #e6e6e6;
|
|
16
|
+
--accent-foreground: #000000;
|
|
17
|
+
--destructive: #b52731;
|
|
18
|
+
--destructive-foreground: #ffffff;
|
|
19
|
+
--border: #f2f2f2;
|
|
20
|
+
--input: #aaaaaa;
|
|
21
|
+
--ring: #aaaaaa;
|
|
22
|
+
--sidebar: #fafafa;
|
|
23
|
+
--sidebar-foreground: #000000;
|
|
24
|
+
--sidebar-accent: #e6e6e6;
|
|
25
|
+
--sidebar-accent-foreground: #1f1fff;
|
|
26
|
+
--radius: 0.1875rem;
|
|
27
|
+
--font-sans: 'Open Sans', sans-serif;
|
|
28
|
+
--font-serif: 'Open Sans', sans-serif;
|
|
29
|
+
--font-mono: 'Source Code Pro', Consolas, 'Ubuntu Mono', Menlo, 'DejaVu Sans Mono', monospace;
|
|
30
|
+
--font-heading: 'Open Sans', sans-serif;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.theme-mdbook.dark {
|
|
34
|
+
--background: #161923;
|
|
35
|
+
--foreground: #bcbdd0;
|
|
36
|
+
--card: #161923;
|
|
37
|
+
--card-foreground: #bcbdd0;
|
|
38
|
+
--popover: #161923;
|
|
39
|
+
--popover-foreground: #bcbdd0;
|
|
40
|
+
--primary: #2b79a2;
|
|
41
|
+
--primary-foreground: #161923;
|
|
42
|
+
--secondary: #2d334f;
|
|
43
|
+
--secondary-foreground: #bcbdd0;
|
|
44
|
+
--muted: #2d334f;
|
|
45
|
+
--muted-foreground: #737480;
|
|
46
|
+
--accent: #282e40;
|
|
47
|
+
--accent-foreground: #b7b9cc;
|
|
48
|
+
--destructive: #f21424;
|
|
49
|
+
--destructive-foreground: #ffffff;
|
|
50
|
+
--border: rgb(188 189 208 / 14%);
|
|
51
|
+
--input: #aaaaaa;
|
|
52
|
+
--ring: #aaaaaa;
|
|
53
|
+
--sidebar: #282d3f;
|
|
54
|
+
--sidebar-foreground: #c8c9db;
|
|
55
|
+
--sidebar-accent: #282e40;
|
|
56
|
+
--sidebar-accent-foreground: #2b79a2;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.theme-mdbook .db-docs-sidebar {
|
|
60
|
+
border-color: transparent;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* mdbook's nav is shorter than the default 3.5rem — keep --nav-h in sync so
|
|
64
|
+
sticky offsets (e.g. the TOC rail) track the real nav height. */
|
|
65
|
+
.theme-mdbook {
|
|
66
|
+
--nav-h: 3.125rem;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.theme-mdbook .db-topnav > div {
|
|
70
|
+
height: 3.125rem;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.theme-mdbook .prose {
|
|
74
|
+
font-size: 1rem;
|
|
75
|
+
line-height: 1.45;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.theme-mdbook .prose :where(a) {
|
|
79
|
+
color: #20609f;
|
|
80
|
+
text-decoration: none;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.theme-mdbook .prose :where(a):hover {
|
|
84
|
+
text-decoration: underline;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.theme-mdbook.dark .prose :where(a) {
|
|
88
|
+
color: #2b79a2;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.theme-mdbook .prose :where(code):not(pre code) {
|
|
92
|
+
padding: 0;
|
|
93
|
+
border: 0;
|
|
94
|
+
border-radius: 0;
|
|
95
|
+
background: transparent;
|
|
96
|
+
color: #301900;
|
|
97
|
+
font-size: 0.875em;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.theme-mdbook.dark .prose :where(code):not(pre code) {
|
|
101
|
+
color: #c5c8c6;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.theme-mdbook .code-wrap pre.shiki,
|
|
105
|
+
.theme-mdbook .prose :where(pre) {
|
|
106
|
+
border: 0;
|
|
107
|
+
border-radius: 0;
|
|
108
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* midnight-bloom — tweakcn "Midnight Bloom" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-midnight-bloom {
|
|
4
|
+
--background: #f9f9f9;
|
|
5
|
+
--foreground: #333333;
|
|
6
|
+
--card: #ffffff;
|
|
7
|
+
--card-foreground: #333333;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #333333;
|
|
10
|
+
--primary: #6c5ce7;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #a1c9f2;
|
|
13
|
+
--secondary-foreground: #333333;
|
|
14
|
+
--muted: #c9c4b5;
|
|
15
|
+
--muted-foreground: #6e6e6e;
|
|
16
|
+
--accent: #8b9467;
|
|
17
|
+
--accent-foreground: #ffffff;
|
|
18
|
+
--destructive: #ef4444;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #d4d4d4;
|
|
21
|
+
--input: #d4d4d4;
|
|
22
|
+
--ring: #6c5ce7;
|
|
23
|
+
--chart-1: #6c5ce7;
|
|
24
|
+
--chart-2: #8e44ad;
|
|
25
|
+
--chart-3: #4b0082;
|
|
26
|
+
--chart-4: #6495ed;
|
|
27
|
+
--chart-5: #4682b4;
|
|
28
|
+
--radius: 0.5rem;
|
|
29
|
+
--sidebar: #f9f9f9;
|
|
30
|
+
--sidebar-foreground: #333333;
|
|
31
|
+
--sidebar-primary: #6c5ce7;
|
|
32
|
+
--sidebar-primary-foreground: #ffffff;
|
|
33
|
+
--sidebar-accent: #8b9467;
|
|
34
|
+
--sidebar-accent-foreground: #ffffff;
|
|
35
|
+
--sidebar-border: #d4d4d4;
|
|
36
|
+
--sidebar-ring: #6c5ce7;
|
|
37
|
+
--font-sans: Montserrat, sans-serif;
|
|
38
|
+
--font-serif: Playfair Display, serif;
|
|
39
|
+
--font-mono: Source Code Pro, monospace;
|
|
40
|
+
--shadow-color: hsl(0 0% 0%);
|
|
41
|
+
--shadow-opacity: 0.1;
|
|
42
|
+
--shadow-blur: 10px;
|
|
43
|
+
--shadow-spread: -2px;
|
|
44
|
+
--shadow-offset-x: 0px;
|
|
45
|
+
--shadow-offset-y: 5px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.theme-midnight-bloom.dark {
|
|
49
|
+
--background: #1a1d23;
|
|
50
|
+
--foreground: #e5e5e5;
|
|
51
|
+
--card: #2f3436;
|
|
52
|
+
--card-foreground: #e5e5e5;
|
|
53
|
+
--popover: #2f3436;
|
|
54
|
+
--popover-foreground: #e5e5e5;
|
|
55
|
+
--primary: #6c5ce7;
|
|
56
|
+
--primary-foreground: #ffffff;
|
|
57
|
+
--secondary: #4b0082;
|
|
58
|
+
--secondary-foreground: #e5e5e5;
|
|
59
|
+
--muted: #444444;
|
|
60
|
+
--muted-foreground: #a3a3a3;
|
|
61
|
+
--accent: #6495ed;
|
|
62
|
+
--accent-foreground: #e5e5e5;
|
|
63
|
+
--destructive: #ef4444;
|
|
64
|
+
--destructive-foreground: #ffffff;
|
|
65
|
+
--border: #444444;
|
|
66
|
+
--input: #444444;
|
|
67
|
+
--ring: #6c5ce7;
|
|
68
|
+
--chart-1: #6c5ce7;
|
|
69
|
+
--chart-2: #8e44ad;
|
|
70
|
+
--chart-3: #4b0082;
|
|
71
|
+
--chart-4: #6495ed;
|
|
72
|
+
--chart-5: #4682b4;
|
|
73
|
+
--radius: 0.5rem;
|
|
74
|
+
--sidebar: #1a1d23;
|
|
75
|
+
--sidebar-foreground: #e5e5e5;
|
|
76
|
+
--sidebar-primary: #6c5ce7;
|
|
77
|
+
--sidebar-primary-foreground: #ffffff;
|
|
78
|
+
--sidebar-accent: #6495ed;
|
|
79
|
+
--sidebar-accent-foreground: #e5e5e5;
|
|
80
|
+
--sidebar-border: #444444;
|
|
81
|
+
--sidebar-ring: #6c5ce7;
|
|
82
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* mocha-mousse — tweakcn "Mocha Mousse" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-mocha-mousse {
|
|
4
|
+
--background: #f1f0e5;
|
|
5
|
+
--foreground: #56453f;
|
|
6
|
+
--card: #f1f0e5;
|
|
7
|
+
--card-foreground: #56453f;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #56453f;
|
|
10
|
+
--primary: #a37764;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #baab92;
|
|
13
|
+
--secondary-foreground: #ffffff;
|
|
14
|
+
--muted: #e4c7b8;
|
|
15
|
+
--muted-foreground: #8a655a;
|
|
16
|
+
--accent: #e4c7b8;
|
|
17
|
+
--accent-foreground: #56453f;
|
|
18
|
+
--destructive: #1f1a17;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #baab92;
|
|
21
|
+
--input: #baab92;
|
|
22
|
+
--ring: #a37764;
|
|
23
|
+
--chart-1: #a37764;
|
|
24
|
+
--chart-2: #8a655a;
|
|
25
|
+
--chart-3: #c39e88;
|
|
26
|
+
--chart-4: #baab92;
|
|
27
|
+
--chart-5: #a28777;
|
|
28
|
+
--sidebar: #ebd6cb;
|
|
29
|
+
--sidebar-foreground: #56453f;
|
|
30
|
+
--sidebar-primary: #a37764;
|
|
31
|
+
--sidebar-primary-foreground: #ffffff;
|
|
32
|
+
--sidebar-accent: #c39e88;
|
|
33
|
+
--sidebar-accent-foreground: #ffffff;
|
|
34
|
+
--sidebar-border: #a28777;
|
|
35
|
+
--sidebar-ring: #a37764;
|
|
36
|
+
--font-sans: DM Sans, sans-serif;
|
|
37
|
+
--font-serif: Georgia, serif;
|
|
38
|
+
--font-mono: Menlo, monospace;
|
|
39
|
+
--radius: 0.5rem;
|
|
40
|
+
--shadow-color: hsl(20 18% 51% / 0.4);
|
|
41
|
+
--shadow-opacity: 0.11;
|
|
42
|
+
--shadow-blur: 0px;
|
|
43
|
+
--shadow-spread: 0px;
|
|
44
|
+
--shadow-offset-x: 2px;
|
|
45
|
+
--shadow-offset-y: 2px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.theme-mocha-mousse.dark {
|
|
49
|
+
--background: #2d2521;
|
|
50
|
+
--foreground: #f1f0e5;
|
|
51
|
+
--card: #3c332e;
|
|
52
|
+
--card-foreground: #f1f0e5;
|
|
53
|
+
--popover: #3c332e;
|
|
54
|
+
--popover-foreground: #f1f0e5;
|
|
55
|
+
--primary: #c39e88;
|
|
56
|
+
--primary-foreground: #2d2521;
|
|
57
|
+
--secondary: #8a655a;
|
|
58
|
+
--secondary-foreground: #f1f0e5;
|
|
59
|
+
--muted: #56453f;
|
|
60
|
+
--muted-foreground: #c5aa9b;
|
|
61
|
+
--accent: #baab92;
|
|
62
|
+
--accent-foreground: #2d2521;
|
|
63
|
+
--destructive: #e57373;
|
|
64
|
+
--destructive-foreground: #2d2521;
|
|
65
|
+
--border: #56453f;
|
|
66
|
+
--input: #56453f;
|
|
67
|
+
--ring: #c39e88;
|
|
68
|
+
--chart-1: #c39e88;
|
|
69
|
+
--chart-2: #baab92;
|
|
70
|
+
--chart-3: #a37764;
|
|
71
|
+
--chart-4: #8a655a;
|
|
72
|
+
--chart-5: #a28777;
|
|
73
|
+
--sidebar: #1f1a17;
|
|
74
|
+
--sidebar-foreground: #f1f0e5;
|
|
75
|
+
--sidebar-primary: #c39e88;
|
|
76
|
+
--sidebar-primary-foreground: #1f1a17;
|
|
77
|
+
--sidebar-accent: #baab92;
|
|
78
|
+
--sidebar-accent-foreground: #1f1a17;
|
|
79
|
+
--sidebar-border: #56453f;
|
|
80
|
+
--sidebar-ring: #c39e88;
|
|
81
|
+
--shadow-color: hsl(20 18% 30% / 0.5);
|
|
82
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/* modern-minimal — tweakcn "Modern Minimal" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-modern-minimal {
|
|
4
|
+
--background: #ffffff;
|
|
5
|
+
--foreground: #333333;
|
|
6
|
+
--card: #ffffff;
|
|
7
|
+
--card-foreground: #333333;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #333333;
|
|
10
|
+
--primary: #3b82f6;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #f3f4f6;
|
|
13
|
+
--secondary-foreground: #4b5563;
|
|
14
|
+
--muted: #f9fafb;
|
|
15
|
+
--muted-foreground: #6b7280;
|
|
16
|
+
--accent: #e0f2fe;
|
|
17
|
+
--accent-foreground: #1e3a8a;
|
|
18
|
+
--destructive: #ef4444;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #e5e7eb;
|
|
21
|
+
--input: #e5e7eb;
|
|
22
|
+
--ring: #3b82f6;
|
|
23
|
+
--chart-1: #3b82f6;
|
|
24
|
+
--chart-2: #2563eb;
|
|
25
|
+
--chart-3: #1d4ed8;
|
|
26
|
+
--chart-4: #1e40af;
|
|
27
|
+
--chart-5: #1e3a8a;
|
|
28
|
+
--radius: 0.375rem;
|
|
29
|
+
--sidebar: #f9fafb;
|
|
30
|
+
--sidebar-foreground: #333333;
|
|
31
|
+
--sidebar-primary: #3b82f6;
|
|
32
|
+
--sidebar-primary-foreground: #ffffff;
|
|
33
|
+
--sidebar-accent: #e0f2fe;
|
|
34
|
+
--sidebar-accent-foreground: #1e3a8a;
|
|
35
|
+
--sidebar-border: #e5e7eb;
|
|
36
|
+
--sidebar-ring: #3b82f6;
|
|
37
|
+
--font-sans: Inter, sans-serif;
|
|
38
|
+
--font-serif: Source Serif 4, serif;
|
|
39
|
+
--font-mono: JetBrains Mono, monospace;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.theme-modern-minimal.dark {
|
|
43
|
+
--background: #171717;
|
|
44
|
+
--foreground: #e5e5e5;
|
|
45
|
+
--card: #262626;
|
|
46
|
+
--card-foreground: #e5e5e5;
|
|
47
|
+
--popover: #262626;
|
|
48
|
+
--popover-foreground: #e5e5e5;
|
|
49
|
+
--primary: #3b82f6;
|
|
50
|
+
--primary-foreground: #ffffff;
|
|
51
|
+
--secondary: #262626;
|
|
52
|
+
--secondary-foreground: #e5e5e5;
|
|
53
|
+
--muted: #1f1f1f;
|
|
54
|
+
--muted-foreground: #a3a3a3;
|
|
55
|
+
--accent: #1e3a8a;
|
|
56
|
+
--accent-foreground: #bfdbfe;
|
|
57
|
+
--destructive: #ef4444;
|
|
58
|
+
--destructive-foreground: #ffffff;
|
|
59
|
+
--border: #404040;
|
|
60
|
+
--input: #404040;
|
|
61
|
+
--ring: #3b82f6;
|
|
62
|
+
--chart-1: #60a5fa;
|
|
63
|
+
--chart-2: #3b82f6;
|
|
64
|
+
--chart-3: #2563eb;
|
|
65
|
+
--chart-4: #1d4ed8;
|
|
66
|
+
--chart-5: #1e40af;
|
|
67
|
+
--radius: 0.375rem;
|
|
68
|
+
--sidebar: #171717;
|
|
69
|
+
--sidebar-foreground: #e5e5e5;
|
|
70
|
+
--sidebar-primary: #3b82f6;
|
|
71
|
+
--sidebar-primary-foreground: #ffffff;
|
|
72
|
+
--sidebar-accent: #1e3a8a;
|
|
73
|
+
--sidebar-accent-foreground: #bfdbfe;
|
|
74
|
+
--sidebar-border: #404040;
|
|
75
|
+
--sidebar-ring: #3b82f6;
|
|
76
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* mono — tweakcn "Mono" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-mono {
|
|
4
|
+
--background: #ffffff;
|
|
5
|
+
--foreground: #0a0a0a;
|
|
6
|
+
--card: #ffffff;
|
|
7
|
+
--card-foreground: #0a0a0a;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #0a0a0a;
|
|
10
|
+
--primary: #737373;
|
|
11
|
+
--primary-foreground: #fafafa;
|
|
12
|
+
--secondary: #f5f5f5;
|
|
13
|
+
--secondary-foreground: #171717;
|
|
14
|
+
--muted: #f5f5f5;
|
|
15
|
+
--muted-foreground: #717171;
|
|
16
|
+
--accent: #f5f5f5;
|
|
17
|
+
--accent-foreground: #171717;
|
|
18
|
+
--destructive: #e7000b;
|
|
19
|
+
--destructive-foreground: #f5f5f5;
|
|
20
|
+
--border: #e5e5e5;
|
|
21
|
+
--input: #e5e5e5;
|
|
22
|
+
--ring: #a1a1a1;
|
|
23
|
+
--chart-1: #737373;
|
|
24
|
+
--chart-2: #737373;
|
|
25
|
+
--chart-3: #737373;
|
|
26
|
+
--chart-4: #737373;
|
|
27
|
+
--chart-5: #737373;
|
|
28
|
+
--sidebar: #fafafa;
|
|
29
|
+
--sidebar-foreground: #0a0a0a;
|
|
30
|
+
--sidebar-primary: #171717;
|
|
31
|
+
--sidebar-primary-foreground: #fafafa;
|
|
32
|
+
--sidebar-accent: #f5f5f5;
|
|
33
|
+
--sidebar-accent-foreground: #171717;
|
|
34
|
+
--sidebar-border: #e5e5e5;
|
|
35
|
+
--sidebar-ring: #a1a1a1;
|
|
36
|
+
--font-sans: Geist Mono, monospace;
|
|
37
|
+
--font-serif: Geist Mono, monospace;
|
|
38
|
+
--font-mono: Geist Mono, monospace;
|
|
39
|
+
--radius: 0rem;
|
|
40
|
+
--shadow-color: hsl(0 0% 0%);
|
|
41
|
+
--shadow-opacity: 0;
|
|
42
|
+
--shadow-blur: 0px;
|
|
43
|
+
--shadow-spread: 0px;
|
|
44
|
+
--shadow-offset-x: 0px;
|
|
45
|
+
--shadow-offset-y: 1px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.theme-mono.dark {
|
|
49
|
+
--background: #0a0a0a;
|
|
50
|
+
--foreground: #fafafa;
|
|
51
|
+
--card: #191919;
|
|
52
|
+
--card-foreground: #fafafa;
|
|
53
|
+
--popover: #262626;
|
|
54
|
+
--popover-foreground: #fafafa;
|
|
55
|
+
--primary: #737373;
|
|
56
|
+
--primary-foreground: #fafafa;
|
|
57
|
+
--secondary: #262626;
|
|
58
|
+
--secondary-foreground: #fafafa;
|
|
59
|
+
--muted: #262626;
|
|
60
|
+
--muted-foreground: #a1a1a1;
|
|
61
|
+
--accent: #404040;
|
|
62
|
+
--accent-foreground: #fafafa;
|
|
63
|
+
--destructive: #ff6467;
|
|
64
|
+
--destructive-foreground: #262626;
|
|
65
|
+
--border: #383838;
|
|
66
|
+
--input: #525252;
|
|
67
|
+
--ring: #737373;
|
|
68
|
+
--chart-1: #737373;
|
|
69
|
+
--chart-2: #737373;
|
|
70
|
+
--chart-3: #737373;
|
|
71
|
+
--chart-4: #737373;
|
|
72
|
+
--chart-5: #737373;
|
|
73
|
+
--sidebar: #171717;
|
|
74
|
+
--sidebar-foreground: #fafafa;
|
|
75
|
+
--sidebar-primary: #fafafa;
|
|
76
|
+
--sidebar-primary-foreground: #171717;
|
|
77
|
+
--sidebar-accent: #262626;
|
|
78
|
+
--sidebar-accent-foreground: #fafafa;
|
|
79
|
+
--sidebar-border: #ffffff;
|
|
80
|
+
--sidebar-ring: #525252;
|
|
81
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/* nature — tweakcn "Nature" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-nature {
|
|
4
|
+
--background: #f8f5f0;
|
|
5
|
+
--foreground: #3e2723;
|
|
6
|
+
--card: #f8f5f0;
|
|
7
|
+
--card-foreground: #3e2723;
|
|
8
|
+
--popover: #f8f5f0;
|
|
9
|
+
--popover-foreground: #3e2723;
|
|
10
|
+
--primary: #2e7d32;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #e8f5e9;
|
|
13
|
+
--secondary-foreground: #1b5e20;
|
|
14
|
+
--muted: #f0e9e0;
|
|
15
|
+
--muted-foreground: #6d4c41;
|
|
16
|
+
--accent: #c8e6c9;
|
|
17
|
+
--accent-foreground: #1b5e20;
|
|
18
|
+
--destructive: #c62828;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #e0d6c9;
|
|
21
|
+
--input: #e0d6c9;
|
|
22
|
+
--ring: #2e7d32;
|
|
23
|
+
--chart-1: #4caf50;
|
|
24
|
+
--chart-2: #388e3c;
|
|
25
|
+
--chart-3: #2e7d32;
|
|
26
|
+
--chart-4: #1b5e20;
|
|
27
|
+
--chart-5: #0a1f0c;
|
|
28
|
+
--radius: 0.5rem;
|
|
29
|
+
--sidebar: #f0e9e0;
|
|
30
|
+
--sidebar-foreground: #3e2723;
|
|
31
|
+
--sidebar-primary: #2e7d32;
|
|
32
|
+
--sidebar-primary-foreground: #ffffff;
|
|
33
|
+
--sidebar-accent: #c8e6c9;
|
|
34
|
+
--sidebar-accent-foreground: #1b5e20;
|
|
35
|
+
--sidebar-border: #e0d6c9;
|
|
36
|
+
--sidebar-ring: #2e7d32;
|
|
37
|
+
--font-sans: Montserrat, sans-serif;
|
|
38
|
+
--font-serif: Merriweather, serif;
|
|
39
|
+
--font-mono: Source Code Pro, monospace;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.theme-nature.dark {
|
|
43
|
+
--background: #1c2a1f;
|
|
44
|
+
--foreground: #f0ebe5;
|
|
45
|
+
--card: #2d3a2e;
|
|
46
|
+
--card-foreground: #f0ebe5;
|
|
47
|
+
--popover: #2d3a2e;
|
|
48
|
+
--popover-foreground: #f0ebe5;
|
|
49
|
+
--primary: #4caf50;
|
|
50
|
+
--primary-foreground: #0a1f0c;
|
|
51
|
+
--secondary: #3e4a3d;
|
|
52
|
+
--secondary-foreground: #d7e0d6;
|
|
53
|
+
--muted: #252f26;
|
|
54
|
+
--muted-foreground: #d7cfc4;
|
|
55
|
+
--accent: #388e3c;
|
|
56
|
+
--accent-foreground: #f0ebe5;
|
|
57
|
+
--destructive: #c62828;
|
|
58
|
+
--destructive-foreground: #f0ebe5;
|
|
59
|
+
--border: #3e4a3d;
|
|
60
|
+
--input: #3e4a3d;
|
|
61
|
+
--ring: #4caf50;
|
|
62
|
+
--chart-1: #81c784;
|
|
63
|
+
--chart-2: #66bb6a;
|
|
64
|
+
--chart-3: #4caf50;
|
|
65
|
+
--chart-4: #43a047;
|
|
66
|
+
--chart-5: #388e3c;
|
|
67
|
+
--radius: 0.5rem;
|
|
68
|
+
--sidebar: #1c2a1f;
|
|
69
|
+
--sidebar-foreground: #f0ebe5;
|
|
70
|
+
--sidebar-primary: #4caf50;
|
|
71
|
+
--sidebar-primary-foreground: #0a1f0c;
|
|
72
|
+
--sidebar-accent: #388e3c;
|
|
73
|
+
--sidebar-accent-foreground: #f0ebe5;
|
|
74
|
+
--sidebar-border: #3e4a3d;
|
|
75
|
+
--sidebar-ring: #4caf50;
|
|
76
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/* neo-brutalism — tweakcn "Neo Brutalism" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-neo-brutalism {
|
|
4
|
+
--background: #ffffff;
|
|
5
|
+
--foreground: #000000;
|
|
6
|
+
--card: #ffffff;
|
|
7
|
+
--card-foreground: #000000;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #000000;
|
|
10
|
+
--primary: #ff3333;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #ffff00;
|
|
13
|
+
--secondary-foreground: #000000;
|
|
14
|
+
--muted: #f0f0f0;
|
|
15
|
+
--muted-foreground: #333333;
|
|
16
|
+
--accent: #0066ff;
|
|
17
|
+
--accent-foreground: #ffffff;
|
|
18
|
+
--destructive: #000000;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #000000;
|
|
21
|
+
--input: #000000;
|
|
22
|
+
--ring: #ff3333;
|
|
23
|
+
--chart-1: #ff3333;
|
|
24
|
+
--chart-2: #ffff00;
|
|
25
|
+
--chart-3: #0066ff;
|
|
26
|
+
--chart-4: #00cc00;
|
|
27
|
+
--chart-5: #cc00cc;
|
|
28
|
+
--radius: 0px;
|
|
29
|
+
--sidebar: #f0f0f0;
|
|
30
|
+
--sidebar-foreground: #000000;
|
|
31
|
+
--sidebar-primary: #ff3333;
|
|
32
|
+
--sidebar-primary-foreground: #ffffff;
|
|
33
|
+
--sidebar-accent: #0066ff;
|
|
34
|
+
--sidebar-accent-foreground: #ffffff;
|
|
35
|
+
--sidebar-border: #000000;
|
|
36
|
+
--sidebar-ring: #ff3333;
|
|
37
|
+
--font-sans: DM Sans, sans-serif;
|
|
38
|
+
--font-mono: Space Mono, monospace;
|
|
39
|
+
--shadow-color: hsl(0 0% 0%);
|
|
40
|
+
--shadow-opacity: 1;
|
|
41
|
+
--shadow-blur: 0px;
|
|
42
|
+
--shadow-spread: 0px;
|
|
43
|
+
--shadow-offset-x: 4px;
|
|
44
|
+
--shadow-offset-y: 4px;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.theme-neo-brutalism.dark {
|
|
48
|
+
--background: #000000;
|
|
49
|
+
--foreground: #ffffff;
|
|
50
|
+
--card: #333333;
|
|
51
|
+
--card-foreground: #ffffff;
|
|
52
|
+
--popover: #333333;
|
|
53
|
+
--popover-foreground: #ffffff;
|
|
54
|
+
--primary: #ff6666;
|
|
55
|
+
--primary-foreground: #000000;
|
|
56
|
+
--secondary: #ffff33;
|
|
57
|
+
--secondary-foreground: #000000;
|
|
58
|
+
--muted: #1a1a1a;
|
|
59
|
+
--muted-foreground: #cccccc;
|
|
60
|
+
--accent: #3399ff;
|
|
61
|
+
--accent-foreground: #000000;
|
|
62
|
+
--destructive: #ffffff;
|
|
63
|
+
--destructive-foreground: #000000;
|
|
64
|
+
--border: #ffffff;
|
|
65
|
+
--input: #ffffff;
|
|
66
|
+
--ring: #ff6666;
|
|
67
|
+
--chart-1: #ff6666;
|
|
68
|
+
--chart-2: #ffff33;
|
|
69
|
+
--chart-3: #3399ff;
|
|
70
|
+
--chart-4: #33cc33;
|
|
71
|
+
--chart-5: #cc33cc;
|
|
72
|
+
--radius: 0px;
|
|
73
|
+
--sidebar: #000000;
|
|
74
|
+
--sidebar-foreground: #ffffff;
|
|
75
|
+
--sidebar-primary: #ff6666;
|
|
76
|
+
--sidebar-primary-foreground: #000000;
|
|
77
|
+
--sidebar-accent: #3399ff;
|
|
78
|
+
--sidebar-accent-foreground: #000000;
|
|
79
|
+
--sidebar-border: #ffffff;
|
|
80
|
+
--sidebar-ring: #ff6666;
|
|
81
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/* northern-lights — tweakcn "Northern Lights" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-northern-lights {
|
|
4
|
+
--background: #f9f9fa;
|
|
5
|
+
--foreground: #333333;
|
|
6
|
+
--card: #ffffff;
|
|
7
|
+
--card-foreground: #333333;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #333333;
|
|
10
|
+
--primary: #34a85a;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #6495ed;
|
|
13
|
+
--secondary-foreground: #ffffff;
|
|
14
|
+
--muted: #ddd9c4;
|
|
15
|
+
--muted-foreground: #6e6e6e;
|
|
16
|
+
--accent: #66d9ef;
|
|
17
|
+
--accent-foreground: #333333;
|
|
18
|
+
--destructive: #ef4444;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #d4d4d4;
|
|
21
|
+
--input: #d4d4d4;
|
|
22
|
+
--ring: #34a85a;
|
|
23
|
+
--chart-1: #34a85a;
|
|
24
|
+
--chart-2: #6495ed;
|
|
25
|
+
--chart-3: #66d9ef;
|
|
26
|
+
--chart-4: #4682b4;
|
|
27
|
+
--chart-5: #1a9641;
|
|
28
|
+
--radius: 0.5rem;
|
|
29
|
+
--sidebar: #f9f9fa;
|
|
30
|
+
--sidebar-foreground: #333333;
|
|
31
|
+
--sidebar-primary: #34a85a;
|
|
32
|
+
--sidebar-primary-foreground: #ffffff;
|
|
33
|
+
--sidebar-accent: #66d9ef;
|
|
34
|
+
--sidebar-accent-foreground: #333333;
|
|
35
|
+
--sidebar-border: #d4d4d4;
|
|
36
|
+
--sidebar-ring: #34a85a;
|
|
37
|
+
--font-sans: Plus Jakarta Sans, sans-serif;
|
|
38
|
+
--font-serif: Source Serif 4, serif;
|
|
39
|
+
--font-mono: JetBrains Mono, monospace;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.theme-northern-lights.dark {
|
|
43
|
+
--background: #1a1d23;
|
|
44
|
+
--foreground: #e5e5e5;
|
|
45
|
+
--card: #2f3436;
|
|
46
|
+
--card-foreground: #e5e5e5;
|
|
47
|
+
--popover: #2f3436;
|
|
48
|
+
--popover-foreground: #e5e5e5;
|
|
49
|
+
--primary: #34a85a;
|
|
50
|
+
--primary-foreground: #ffffff;
|
|
51
|
+
--secondary: #4682b4;
|
|
52
|
+
--secondary-foreground: #e5e5e5;
|
|
53
|
+
--muted: #444444;
|
|
54
|
+
--muted-foreground: #a3a3a3;
|
|
55
|
+
--accent: #6495ed;
|
|
56
|
+
--accent-foreground: #e5e5e5;
|
|
57
|
+
--destructive: #ef4444;
|
|
58
|
+
--destructive-foreground: #ffffff;
|
|
59
|
+
--border: #444444;
|
|
60
|
+
--input: #444444;
|
|
61
|
+
--ring: #34a85a;
|
|
62
|
+
--chart-1: #34a85a;
|
|
63
|
+
--chart-2: #4682b4;
|
|
64
|
+
--chart-3: #6495ed;
|
|
65
|
+
--chart-4: #66d9ef;
|
|
66
|
+
--chart-5: #1a9641;
|
|
67
|
+
--radius: 0.5rem;
|
|
68
|
+
--sidebar: #1a1d23;
|
|
69
|
+
--sidebar-foreground: #e5e5e5;
|
|
70
|
+
--sidebar-primary: #34a85a;
|
|
71
|
+
--sidebar-primary-foreground: #ffffff;
|
|
72
|
+
--sidebar-accent: #6495ed;
|
|
73
|
+
--sidebar-accent-foreground: #e5e5e5;
|
|
74
|
+
--sidebar-border: #444444;
|
|
75
|
+
--sidebar-ring: #34a85a;
|
|
76
|
+
}
|