@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,81 @@
|
|
|
1
|
+
/* tangerine — tweakcn "Tangerine" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-tangerine {
|
|
4
|
+
--background: #e8ebed;
|
|
5
|
+
--foreground: #333333;
|
|
6
|
+
--card: #ffffff;
|
|
7
|
+
--card-foreground: #333333;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #333333;
|
|
10
|
+
--primary: #e05d38;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #f3f4f6;
|
|
13
|
+
--secondary-foreground: #4b5563;
|
|
14
|
+
--muted: #f9fafb;
|
|
15
|
+
--muted-foreground: #6b7280;
|
|
16
|
+
--accent: #d6e4f0;
|
|
17
|
+
--accent-foreground: #1e3a8a;
|
|
18
|
+
--destructive: #ef4444;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #dcdfe2;
|
|
21
|
+
--input: #f4f5f7;
|
|
22
|
+
--ring: #e05d38;
|
|
23
|
+
--chart-1: #86a7c8;
|
|
24
|
+
--chart-2: #eea591;
|
|
25
|
+
--chart-3: #5a7ca6;
|
|
26
|
+
--chart-4: #466494;
|
|
27
|
+
--chart-5: #334c82;
|
|
28
|
+
--sidebar: #dddfe2;
|
|
29
|
+
--sidebar-foreground: #333333;
|
|
30
|
+
--sidebar-primary: #e05d38;
|
|
31
|
+
--sidebar-primary-foreground: #ffffff;
|
|
32
|
+
--sidebar-accent: #d6e4f0;
|
|
33
|
+
--sidebar-accent-foreground: #1e3a8a;
|
|
34
|
+
--sidebar-border: #e5e7eb;
|
|
35
|
+
--sidebar-ring: #e05d38;
|
|
36
|
+
--font-sans: Inter, sans-serif;
|
|
37
|
+
--font-serif: Source Serif 4, serif;
|
|
38
|
+
--font-mono: JetBrains Mono, monospace;
|
|
39
|
+
--radius: 0.75rem;
|
|
40
|
+
--shadow-color: hsl(0 0% 0%);
|
|
41
|
+
--shadow-opacity: 0.1;
|
|
42
|
+
--shadow-blur: 3px;
|
|
43
|
+
--shadow-spread: 0px;
|
|
44
|
+
--shadow-offset-x: 0px;
|
|
45
|
+
--shadow-offset-y: 1px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.theme-tangerine.dark {
|
|
49
|
+
--background: #1c2433;
|
|
50
|
+
--foreground: #e5e5e5;
|
|
51
|
+
--card: #2a3040;
|
|
52
|
+
--card-foreground: #e5e5e5;
|
|
53
|
+
--popover: #262b38;
|
|
54
|
+
--popover-foreground: #e5e5e5;
|
|
55
|
+
--primary: #e05d38;
|
|
56
|
+
--primary-foreground: #ffffff;
|
|
57
|
+
--secondary: #2a303e;
|
|
58
|
+
--secondary-foreground: #e5e5e5;
|
|
59
|
+
--muted: #2a303e;
|
|
60
|
+
--muted-foreground: #a3a3a3;
|
|
61
|
+
--accent: #2a3656;
|
|
62
|
+
--accent-foreground: #bfdbfe;
|
|
63
|
+
--destructive: #ef4444;
|
|
64
|
+
--destructive-foreground: #ffffff;
|
|
65
|
+
--border: #3d4354;
|
|
66
|
+
--input: #3d4354;
|
|
67
|
+
--ring: #e05d38;
|
|
68
|
+
--chart-1: #86a7c8;
|
|
69
|
+
--chart-2: #e6a08f;
|
|
70
|
+
--chart-3: #5a7ca6;
|
|
71
|
+
--chart-4: #466494;
|
|
72
|
+
--chart-5: #334c82;
|
|
73
|
+
--sidebar: #2a303f;
|
|
74
|
+
--sidebar-foreground: #e5e5e5;
|
|
75
|
+
--sidebar-primary: #e05d38;
|
|
76
|
+
--sidebar-primary-foreground: #ffffff;
|
|
77
|
+
--sidebar-accent: #2a3656;
|
|
78
|
+
--sidebar-accent-foreground: #bfdbfe;
|
|
79
|
+
--sidebar-border: #3d4354;
|
|
80
|
+
--sidebar-ring: #e05d38;
|
|
81
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* twitter — tweakcn "Twitter" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-twitter {
|
|
4
|
+
--background: #ffffff;
|
|
5
|
+
--foreground: #0f1419;
|
|
6
|
+
--card: #f7f8f8;
|
|
7
|
+
--card-foreground: #0f1419;
|
|
8
|
+
--popover: #ffffff;
|
|
9
|
+
--popover-foreground: #0f1419;
|
|
10
|
+
--primary: #1e9df1;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #0f1419;
|
|
13
|
+
--secondary-foreground: #ffffff;
|
|
14
|
+
--muted: #e5e5e6;
|
|
15
|
+
--muted-foreground: #0f1419;
|
|
16
|
+
--accent: #e3ecf6;
|
|
17
|
+
--accent-foreground: #1e9df1;
|
|
18
|
+
--destructive: #f4212e;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #e1eaef;
|
|
21
|
+
--input: #f7f9fa;
|
|
22
|
+
--ring: #1da1f2;
|
|
23
|
+
--chart-1: #1e9df1;
|
|
24
|
+
--chart-2: #00b87a;
|
|
25
|
+
--chart-3: #f7b928;
|
|
26
|
+
--chart-4: #17bf63;
|
|
27
|
+
--chart-5: #e0245e;
|
|
28
|
+
--sidebar: #f7f8f8;
|
|
29
|
+
--sidebar-foreground: #0f1419;
|
|
30
|
+
--sidebar-primary: #1e9df1;
|
|
31
|
+
--sidebar-primary-foreground: #ffffff;
|
|
32
|
+
--sidebar-accent: #e3ecf6;
|
|
33
|
+
--sidebar-accent-foreground: #1e9df1;
|
|
34
|
+
--sidebar-border: #e1e8ed;
|
|
35
|
+
--sidebar-ring: #1da1f2;
|
|
36
|
+
--font-sans: Open Sans, sans-serif;
|
|
37
|
+
--font-serif: Georgia, serif;
|
|
38
|
+
--font-mono: Menlo, monospace;
|
|
39
|
+
--radius: 1.3rem;
|
|
40
|
+
--shadow-color: rgba(29, 161, 242, 0.15);
|
|
41
|
+
--shadow-opacity: 0;
|
|
42
|
+
--shadow-blur: 0px;
|
|
43
|
+
--shadow-spread: 0px;
|
|
44
|
+
--shadow-offset-x: 0px;
|
|
45
|
+
--shadow-offset-y: 2px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.theme-twitter.dark {
|
|
49
|
+
--background: #000000;
|
|
50
|
+
--foreground: #e7e9ea;
|
|
51
|
+
--card: #17181c;
|
|
52
|
+
--card-foreground: #d9d9d9;
|
|
53
|
+
--popover: #000000;
|
|
54
|
+
--popover-foreground: #e7e9ea;
|
|
55
|
+
--primary: #1c9cf0;
|
|
56
|
+
--primary-foreground: #ffffff;
|
|
57
|
+
--secondary: #f0f3f4;
|
|
58
|
+
--secondary-foreground: #0f1419;
|
|
59
|
+
--muted: #181818;
|
|
60
|
+
--muted-foreground: #72767a;
|
|
61
|
+
--accent: #061622;
|
|
62
|
+
--accent-foreground: #1c9cf0;
|
|
63
|
+
--destructive: #f4212e;
|
|
64
|
+
--destructive-foreground: #ffffff;
|
|
65
|
+
--border: #242628;
|
|
66
|
+
--input: #22303c;
|
|
67
|
+
--ring: #1da1f2;
|
|
68
|
+
--chart-1: #1e9df1;
|
|
69
|
+
--chart-2: #00b87a;
|
|
70
|
+
--chart-3: #f7b928;
|
|
71
|
+
--chart-4: #17bf63;
|
|
72
|
+
--chart-5: #e0245e;
|
|
73
|
+
--sidebar: #17181c;
|
|
74
|
+
--sidebar-foreground: #d9d9d9;
|
|
75
|
+
--sidebar-primary: #1da1f2;
|
|
76
|
+
--sidebar-primary-foreground: #ffffff;
|
|
77
|
+
--sidebar-accent: #061622;
|
|
78
|
+
--sidebar-accent-foreground: #1c9cf0;
|
|
79
|
+
--sidebar-border: #38444d;
|
|
80
|
+
--sidebar-ring: #1da1f2;
|
|
81
|
+
--shadow-color: rgba(29, 161, 242, 0.25);
|
|
82
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/* vercel — tweakcn "vercel" preset: high-contrast neutral (pure black/white)
|
|
2
|
+
with a warm amber + blue chart accent. Geist fonts fall back to the loaded
|
|
3
|
+
Inter/JetBrains stacks when not installed. */
|
|
4
|
+
.theme-vercel {
|
|
5
|
+
--card: oklch(1 0 0);
|
|
6
|
+
--ring: oklch(0 0 0);
|
|
7
|
+
--input: oklch(0.94 0 0);
|
|
8
|
+
--muted: oklch(0.97 0 0);
|
|
9
|
+
--accent: oklch(0.94 0 0);
|
|
10
|
+
--border: oklch(0.92 0 0);
|
|
11
|
+
--radius: 0.5rem;
|
|
12
|
+
--chart-1: oklch(0.81 0.17 75.35);
|
|
13
|
+
--chart-2: oklch(0.55 0.22 264.53);
|
|
14
|
+
--chart-3: oklch(0.72 0 0);
|
|
15
|
+
--chart-4: oklch(0.92 0 0);
|
|
16
|
+
--chart-5: oklch(0.56 0 0);
|
|
17
|
+
--popover: oklch(0.99 0 0);
|
|
18
|
+
--primary: oklch(0 0 0);
|
|
19
|
+
--sidebar: oklch(0.99 0 0);
|
|
20
|
+
--font-mono: Geist Mono, monospace;
|
|
21
|
+
--font-sans: Geist, sans-serif;
|
|
22
|
+
--secondary: oklch(0.94 0 0);
|
|
23
|
+
--background: oklch(0.99 0 0);
|
|
24
|
+
--font-serif: Georgia, serif;
|
|
25
|
+
--foreground: oklch(0 0 0);
|
|
26
|
+
--destructive: oklch(0.63 0.19 23.03);
|
|
27
|
+
--shadow-blur: 2px;
|
|
28
|
+
--shadow-color: hsl(0 0% 0%);
|
|
29
|
+
--sidebar-ring: oklch(0 0 0);
|
|
30
|
+
--shadow-spread: 0px;
|
|
31
|
+
--shadow-opacity: 0.18;
|
|
32
|
+
--sidebar-accent: oklch(0.94 0 0);
|
|
33
|
+
--sidebar-border: oklch(0.94 0 0);
|
|
34
|
+
--card-foreground: oklch(0 0 0);
|
|
35
|
+
--shadow-offset-x: 0px;
|
|
36
|
+
--shadow-offset-y: 1px;
|
|
37
|
+
--sidebar-primary: oklch(0 0 0);
|
|
38
|
+
--muted-foreground: oklch(0.44 0 0);
|
|
39
|
+
--accent-foreground: oklch(0 0 0);
|
|
40
|
+
--popover-foreground: oklch(0 0 0);
|
|
41
|
+
--primary-foreground: oklch(1 0 0);
|
|
42
|
+
--sidebar-foreground: oklch(0 0 0);
|
|
43
|
+
--secondary-foreground: oklch(0 0 0);
|
|
44
|
+
--destructive-foreground: oklch(1 0 0);
|
|
45
|
+
--sidebar-accent-foreground: oklch(0 0 0);
|
|
46
|
+
--sidebar-primary-foreground: oklch(1 0 0);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.theme-vercel.dark {
|
|
50
|
+
--card: oklch(0.14 0 0);
|
|
51
|
+
--ring: oklch(0.72 0 0);
|
|
52
|
+
--input: oklch(0.32 0 0);
|
|
53
|
+
--muted: oklch(0.23 0 0);
|
|
54
|
+
--accent: oklch(0.32 0 0);
|
|
55
|
+
--border: oklch(0.26 0 0);
|
|
56
|
+
--chart-1: oklch(0.81 0.17 75.35);
|
|
57
|
+
--chart-2: oklch(0.58 0.21 260.84);
|
|
58
|
+
--chart-3: oklch(0.56 0 0);
|
|
59
|
+
--chart-4: oklch(0.44 0 0);
|
|
60
|
+
--chart-5: oklch(0.92 0 0);
|
|
61
|
+
--popover: oklch(0.18 0 0);
|
|
62
|
+
--primary: oklch(1 0 0);
|
|
63
|
+
--sidebar: oklch(0.18 0 0);
|
|
64
|
+
--font-mono: Geist Mono, monospace;
|
|
65
|
+
--font-sans: Geist, sans-serif;
|
|
66
|
+
--secondary: oklch(0.25 0 0);
|
|
67
|
+
--background: oklch(0 0 0);
|
|
68
|
+
--font-serif: Georgia, serif;
|
|
69
|
+
--foreground: oklch(1 0 0);
|
|
70
|
+
--destructive: oklch(0.69 0.2 23.91);
|
|
71
|
+
--sidebar-ring: oklch(0.72 0 0);
|
|
72
|
+
--sidebar-accent: oklch(0.32 0 0);
|
|
73
|
+
--sidebar-border: oklch(0.32 0 0);
|
|
74
|
+
--card-foreground: oklch(1 0 0);
|
|
75
|
+
--sidebar-primary: oklch(1 0 0);
|
|
76
|
+
--muted-foreground: oklch(0.72 0 0);
|
|
77
|
+
--accent-foreground: oklch(1 0 0);
|
|
78
|
+
--popover-foreground: oklch(1 0 0);
|
|
79
|
+
--primary-foreground: oklch(0 0 0);
|
|
80
|
+
--sidebar-foreground: oklch(1 0 0);
|
|
81
|
+
--secondary-foreground: oklch(1 0 0);
|
|
82
|
+
--destructive-foreground: oklch(0 0 0);
|
|
83
|
+
--sidebar-accent-foreground: oklch(1 0 0);
|
|
84
|
+
--sidebar-primary-foreground: oklch(0 0 0);
|
|
85
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/* vintage-paper — tweakcn "Vintage Paper" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-vintage-paper {
|
|
4
|
+
--background: #f5f1e6;
|
|
5
|
+
--foreground: #4a3f35;
|
|
6
|
+
--card: #fffcf5;
|
|
7
|
+
--card-foreground: #4a3f35;
|
|
8
|
+
--popover: #fffcf5;
|
|
9
|
+
--popover-foreground: #4a3f35;
|
|
10
|
+
--primary: #a67c52;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #e2d8c3;
|
|
13
|
+
--secondary-foreground: #5c4d3f;
|
|
14
|
+
--muted: #ece5d8;
|
|
15
|
+
--muted-foreground: #7d6b56;
|
|
16
|
+
--accent: #d4c8aa;
|
|
17
|
+
--accent-foreground: #4a3f35;
|
|
18
|
+
--destructive: #b54a35;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #dbd0ba;
|
|
21
|
+
--input: #dbd0ba;
|
|
22
|
+
--ring: #a67c52;
|
|
23
|
+
--chart-1: #a67c52;
|
|
24
|
+
--chart-2: #8d6e4c;
|
|
25
|
+
--chart-3: #735a3a;
|
|
26
|
+
--chart-4: #b3906f;
|
|
27
|
+
--chart-5: #c0a080;
|
|
28
|
+
--radius: 0.25rem;
|
|
29
|
+
--sidebar: #ece5d8;
|
|
30
|
+
--sidebar-foreground: #4a3f35;
|
|
31
|
+
--sidebar-primary: #a67c52;
|
|
32
|
+
--sidebar-primary-foreground: #ffffff;
|
|
33
|
+
--sidebar-accent: #d4c8aa;
|
|
34
|
+
--sidebar-accent-foreground: #4a3f35;
|
|
35
|
+
--sidebar-border: #dbd0ba;
|
|
36
|
+
--sidebar-ring: #a67c52;
|
|
37
|
+
--font-sans: Libre Baskerville, serif;
|
|
38
|
+
--font-serif: Lora, serif;
|
|
39
|
+
--font-mono: IBM Plex Mono, monospace;
|
|
40
|
+
--shadow-color: hsl(28 13% 20%);
|
|
41
|
+
--shadow-opacity: 0.12;
|
|
42
|
+
--shadow-blur: 5px;
|
|
43
|
+
--shadow-spread: 0px;
|
|
44
|
+
--shadow-offset-x: 2px;
|
|
45
|
+
--shadow-offset-y: 3px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.theme-vintage-paper.dark {
|
|
49
|
+
--background: #2d2621;
|
|
50
|
+
--foreground: #ece5d8;
|
|
51
|
+
--card: #3a322c;
|
|
52
|
+
--card-foreground: #ece5d8;
|
|
53
|
+
--popover: #3a322c;
|
|
54
|
+
--popover-foreground: #ece5d8;
|
|
55
|
+
--primary: #c0a080;
|
|
56
|
+
--primary-foreground: #2d2621;
|
|
57
|
+
--secondary: #4a4039;
|
|
58
|
+
--secondary-foreground: #ece5d8;
|
|
59
|
+
--muted: #312b26;
|
|
60
|
+
--muted-foreground: #c5bcac;
|
|
61
|
+
--accent: #59493e;
|
|
62
|
+
--accent-foreground: #ece5d8;
|
|
63
|
+
--destructive: #b54a35;
|
|
64
|
+
--destructive-foreground: #ffffff;
|
|
65
|
+
--border: #4a4039;
|
|
66
|
+
--input: #4a4039;
|
|
67
|
+
--ring: #c0a080;
|
|
68
|
+
--chart-1: #c0a080;
|
|
69
|
+
--chart-2: #b3906f;
|
|
70
|
+
--chart-3: #a67c52;
|
|
71
|
+
--chart-4: #8d6e4c;
|
|
72
|
+
--chart-5: #735a3a;
|
|
73
|
+
--radius: 0.25rem;
|
|
74
|
+
--sidebar: #2d2621;
|
|
75
|
+
--sidebar-foreground: #ece5d8;
|
|
76
|
+
--sidebar-primary: #c0a080;
|
|
77
|
+
--sidebar-primary-foreground: #2d2621;
|
|
78
|
+
--sidebar-accent: #59493e;
|
|
79
|
+
--sidebar-accent-foreground: #ece5d8;
|
|
80
|
+
--sidebar-border: #4a4039;
|
|
81
|
+
--sidebar-ring: #c0a080;
|
|
82
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/* violet-bloom — tweakcn "Violet Bloom" preset. Auto-generated from tweakcn defaultPresets;
|
|
2
|
+
tokens kept verbatim (consumed via var()). */
|
|
3
|
+
.theme-violet-bloom {
|
|
4
|
+
--background: #fdfdfd;
|
|
5
|
+
--foreground: #000000;
|
|
6
|
+
--card: #fdfdfd;
|
|
7
|
+
--card-foreground: #000000;
|
|
8
|
+
--popover: #fcfcfc;
|
|
9
|
+
--popover-foreground: #000000;
|
|
10
|
+
--primary: #7033ff;
|
|
11
|
+
--primary-foreground: #ffffff;
|
|
12
|
+
--secondary: #edf0f4;
|
|
13
|
+
--secondary-foreground: #080808;
|
|
14
|
+
--muted: #f5f5f5;
|
|
15
|
+
--muted-foreground: #525252;
|
|
16
|
+
--accent: #e2ebff;
|
|
17
|
+
--accent-foreground: #1e69dc;
|
|
18
|
+
--destructive: #e54b4f;
|
|
19
|
+
--destructive-foreground: #ffffff;
|
|
20
|
+
--border: #e7e7ee;
|
|
21
|
+
--input: #ebebeb;
|
|
22
|
+
--ring: #000000;
|
|
23
|
+
--chart-1: #4ac885;
|
|
24
|
+
--chart-2: #7033ff;
|
|
25
|
+
--chart-3: #fd822b;
|
|
26
|
+
--chart-4: #3276e4;
|
|
27
|
+
--chart-5: #747474;
|
|
28
|
+
--sidebar: #f5f8fb;
|
|
29
|
+
--sidebar-foreground: #000000;
|
|
30
|
+
--sidebar-primary: #000000;
|
|
31
|
+
--sidebar-primary-foreground: #ffffff;
|
|
32
|
+
--sidebar-accent: #ebebeb;
|
|
33
|
+
--sidebar-accent-foreground: #000000;
|
|
34
|
+
--sidebar-border: #ebebeb;
|
|
35
|
+
--sidebar-ring: #000000;
|
|
36
|
+
--font-sans: Plus Jakarta Sans, sans-serif;
|
|
37
|
+
--font-serif: Lora, serif;
|
|
38
|
+
--font-mono: IBM Plex Mono, monospace;
|
|
39
|
+
--radius: 1.4rem;
|
|
40
|
+
--shadow-color: hsl(0 0% 0%);
|
|
41
|
+
--shadow-opacity: 0.16;
|
|
42
|
+
--shadow-blur: 3px;
|
|
43
|
+
--shadow-spread: 0px;
|
|
44
|
+
--shadow-offset-x: 0px;
|
|
45
|
+
--shadow-offset-y: 2px;
|
|
46
|
+
--letter-spacing: -0.025em;
|
|
47
|
+
--spacing: 0.27rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.theme-violet-bloom.dark {
|
|
51
|
+
--background: #1a1b1e;
|
|
52
|
+
--foreground: #f0f0f0;
|
|
53
|
+
--card: #222327;
|
|
54
|
+
--card-foreground: #f0f0f0;
|
|
55
|
+
--popover: #222327;
|
|
56
|
+
--popover-foreground: #f0f0f0;
|
|
57
|
+
--primary: #8c5cff;
|
|
58
|
+
--primary-foreground: #ffffff;
|
|
59
|
+
--secondary: #2a2c33;
|
|
60
|
+
--secondary-foreground: #f0f0f0;
|
|
61
|
+
--muted: #2a2c33;
|
|
62
|
+
--muted-foreground: #a0a0a0;
|
|
63
|
+
--accent: #1e293b;
|
|
64
|
+
--accent-foreground: #79c0ff;
|
|
65
|
+
--destructive: #f87171;
|
|
66
|
+
--destructive-foreground: #ffffff;
|
|
67
|
+
--border: #33353a;
|
|
68
|
+
--input: #33353a;
|
|
69
|
+
--ring: #8c5cff;
|
|
70
|
+
--chart-1: #4ade80;
|
|
71
|
+
--chart-2: #8c5cff;
|
|
72
|
+
--chart-3: #fca5a5;
|
|
73
|
+
--chart-4: #5993f4;
|
|
74
|
+
--chart-5: #a0a0a0;
|
|
75
|
+
--sidebar: #161618;
|
|
76
|
+
--sidebar-foreground: #f0f0f0;
|
|
77
|
+
--sidebar-primary: #8c5cff;
|
|
78
|
+
--sidebar-primary-foreground: #ffffff;
|
|
79
|
+
--sidebar-accent: #2a2c33;
|
|
80
|
+
--sidebar-accent-foreground: #8c5cff;
|
|
81
|
+
--sidebar-border: #33353a;
|
|
82
|
+
--sidebar-ring: #8c5cff;
|
|
83
|
+
--font-sans: Plus Jakarta Sans, sans-serif;
|
|
84
|
+
--font-serif: Lora, serif;
|
|
85
|
+
--font-mono: IBM Plex Mono, monospace;
|
|
86
|
+
--radius: 1.4rem;
|
|
87
|
+
--shadow-color: hsl(0 0% 0%);
|
|
88
|
+
--shadow-opacity: 0.16;
|
|
89
|
+
--shadow-blur: 3px;
|
|
90
|
+
--shadow-spread: 0px;
|
|
91
|
+
--shadow-offset-x: 0px;
|
|
92
|
+
--shadow-offset-y: 2px;
|
|
93
|
+
--letter-spacing: -0.025em;
|
|
94
|
+
--spacing: 0.27rem;
|
|
95
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* vitepress — VitePress default theme (as at cloudvoyant.github.io/codevoyant).
|
|
2
|
+
Exact `--vp-c-*` mapping: indigo brand (#3451b2 light / #a8b1ff dark), white/
|
|
3
|
+
#1b1b1f backgrounds, cool-slate text, Inter throughout. Serif headings: NO. */
|
|
4
|
+
.theme-vitepress {
|
|
5
|
+
--background: oklch(1 0 0); /* #ffffff */
|
|
6
|
+
--foreground: oklch(0.31 0.012 268); /* #3c3c43 text-1 */
|
|
7
|
+
--card: oklch(0.972 0.001 260); /* soft bg-soft #f6f6f7 so cards read as panels */
|
|
8
|
+
--card-foreground: oklch(0.31 0.012 268);
|
|
9
|
+
--popover: oklch(1 0 0);
|
|
10
|
+
--popover-foreground: oklch(0.31 0.012 268);
|
|
11
|
+
--primary: oklch(0.45 0.16 268); /* indigo #3451b2 */
|
|
12
|
+
--primary-foreground: oklch(1 0 0);
|
|
13
|
+
--secondary: oklch(0.972 0.001 260); /* bg-alt #f6f6f7 */
|
|
14
|
+
--secondary-foreground: oklch(0.31 0.012 268);
|
|
15
|
+
--muted: oklch(0.972 0.001 260);
|
|
16
|
+
--muted-foreground: oklch(0.49 0.006 268); /* text-2 #67676c */
|
|
17
|
+
--accent: oklch(0.972 0.001 260);
|
|
18
|
+
--accent-foreground: oklch(0.45 0.16 268);
|
|
19
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
20
|
+
--destructive-foreground: oklch(1 0 0);
|
|
21
|
+
--border: oklch(0.9 0.002 268); /* subtle divider #e2e2e3 (borders read soft/hidden) */
|
|
22
|
+
--input: oklch(0.9 0.002 268);
|
|
23
|
+
--ring: oklch(0.45 0.16 268);
|
|
24
|
+
--sidebar: oklch(0.972 0.001 260); /* bg-alt */
|
|
25
|
+
--sidebar-foreground: oklch(0.31 0.012 268);
|
|
26
|
+
--sidebar-accent: oklch(0.94 0.01 268);
|
|
27
|
+
--sidebar-accent-foreground: oklch(0.45 0.16 268);
|
|
28
|
+
--radius: 0.5rem;
|
|
29
|
+
--font-sans:
|
|
30
|
+
'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
|
|
31
|
+
sans-serif;
|
|
32
|
+
--font-serif: Georgia, Cambria, 'Times New Roman', serif;
|
|
33
|
+
--font-mono: ui-monospace, 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.theme-vitepress.dark {
|
|
37
|
+
--background: oklch(0.2 0.005 286); /* #1b1b1f */
|
|
38
|
+
--foreground: oklch(0.89 0.008 95); /* #dfdfd6 text-1 (warm off-white) */
|
|
39
|
+
--card: oklch(0.24 0.005 286); /* bg-elv #202127 */
|
|
40
|
+
--card-foreground: oklch(0.89 0.008 95);
|
|
41
|
+
--popover: oklch(0.24 0.005 286);
|
|
42
|
+
--popover-foreground: oklch(0.89 0.008 95);
|
|
43
|
+
--primary: oklch(0.77 0.11 285); /* brand #a8b1ff */
|
|
44
|
+
--primary-foreground: oklch(0.2 0.005 286);
|
|
45
|
+
--secondary: oklch(0.19 0.004 286); /* bg-alt #161618 */
|
|
46
|
+
--secondary-foreground: oklch(0.89 0.008 95);
|
|
47
|
+
--muted: oklch(0.24 0.005 286);
|
|
48
|
+
--muted-foreground: oklch(0.66 0.006 286); /* text-2 #98989f */
|
|
49
|
+
--accent: oklch(0.24 0.005 286);
|
|
50
|
+
--accent-foreground: oklch(0.77 0.11 285);
|
|
51
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
52
|
+
--destructive-foreground: oklch(0.985 0 0);
|
|
53
|
+
--border: oklch(0.35 0.005 286); /* border #3c3f44 */
|
|
54
|
+
--input: oklch(0.31 0.004 286); /* divider #2e2e32 */
|
|
55
|
+
--ring: oklch(0.77 0.11 285);
|
|
56
|
+
--sidebar: oklch(0.19 0.004 286); /* bg-alt */
|
|
57
|
+
--sidebar-foreground: oklch(0.89 0.008 95);
|
|
58
|
+
--sidebar-accent: oklch(0.24 0.005 286);
|
|
59
|
+
--sidebar-accent-foreground: oklch(0.77 0.11 285);
|
|
60
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/* vortex-ui — brand theme based on anyscale: white surface, saturated logo-purple
|
|
2
|
+
primary/accent (deepest logo purple #0700f3), cool slate text. Dark mode
|
|
3
|
+
carries a subtle purple tinge in the surface tones. */
|
|
4
|
+
.theme-vortex-ui {
|
|
5
|
+
--radius: 0.5rem;
|
|
6
|
+
--background: oklch(1 0 0);
|
|
7
|
+
--foreground: oklch(0.22 0.02 270);
|
|
8
|
+
--muted: oklch(0.93 0.008 278);
|
|
9
|
+
--muted-foreground: oklch(0.5 0.03 275);
|
|
10
|
+
--popover: oklch(0.985 0.006 280);
|
|
11
|
+
--popover-foreground: oklch(0.22 0.02 270);
|
|
12
|
+
--card: oklch(0.985 0.006 280);
|
|
13
|
+
--card-foreground: oklch(0.22 0.02 270);
|
|
14
|
+
--border: oklch(0.92 0.014 276);
|
|
15
|
+
--input: oklch(0.92 0.014 276);
|
|
16
|
+
--primary: oklch(0.5 0.3 265);
|
|
17
|
+
--primary-foreground: oklch(1 0 180);
|
|
18
|
+
--secondary: oklch(0.92 0.01 278);
|
|
19
|
+
--secondary-foreground: oklch(0.42 0.05 274);
|
|
20
|
+
--accent: oklch(0.9 0.035 274);
|
|
21
|
+
--accent-foreground: oklch(0.42 0.29 264);
|
|
22
|
+
--destructive: oklch(0.63 0.256 29.629);
|
|
23
|
+
--destructive-foreground: oklch(1 0 180);
|
|
24
|
+
--ring: oklch(0.5 0.3 265);
|
|
25
|
+
--chart-1: oklch(0.5 0.3 265);
|
|
26
|
+
--chart-2: oklch(0.92 0.01 278);
|
|
27
|
+
--chart-3: oklch(0.9 0.035 274);
|
|
28
|
+
--chart-4: oklch(0.94 0.008 276.055);
|
|
29
|
+
--chart-5: oklch(0.565 0.244 267.612);
|
|
30
|
+
--sidebar: oklch(0.985 0.006 280);
|
|
31
|
+
--sidebar-foreground: oklch(0.22 0.02 270);
|
|
32
|
+
--sidebar-primary: oklch(0.5 0.3 265);
|
|
33
|
+
--sidebar-primary-foreground: oklch(1 0 180);
|
|
34
|
+
--sidebar-accent: oklch(0.9 0.035 274);
|
|
35
|
+
--sidebar-accent-foreground: oklch(0.42 0.29 264);
|
|
36
|
+
--sidebar-border: oklch(0.92 0.014 276);
|
|
37
|
+
--sidebar-ring: oklch(0.5 0.3 265);
|
|
38
|
+
/* Match code-block backgrounds to the surface tone instead of the gray fallback. */
|
|
39
|
+
--shiki-light-bg: oklch(0.985 0.006 280);
|
|
40
|
+
--shiki-dark-bg: oklch(0.24 0.055 274);
|
|
41
|
+
/* Un-shadowed aliases used by the code-block override (Astro's Shiki inline
|
|
42
|
+
vars set on the element would otherwise win). */
|
|
43
|
+
--vortex-ui-shiki-light-bg: oklch(0.985 0.006 280);
|
|
44
|
+
--vortex-ui-shiki-dark-bg: oklch(0.24 0.055 274);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.theme-vortex-ui.dark {
|
|
48
|
+
--radius: 0.5rem;
|
|
49
|
+
--background: oklch(0.18 0.054 270.4);
|
|
50
|
+
--foreground: oklch(0.955 0.02 278);
|
|
51
|
+
--muted: oklch(0.25 0.05 271);
|
|
52
|
+
--muted-foreground: oklch(0.74 0.045 275);
|
|
53
|
+
--popover: oklch(0.21 0.05 270.4);
|
|
54
|
+
--popover-foreground: oklch(0.955 0.02 278);
|
|
55
|
+
--card: oklch(0.21 0.05 270.4);
|
|
56
|
+
--card-foreground: oklch(0.955 0.02 278);
|
|
57
|
+
--border: oklch(0.31 0.065 272);
|
|
58
|
+
--input: oklch(0.31 0.065 272);
|
|
59
|
+
--primary: oklch(0.68 0.27 270);
|
|
60
|
+
--primary-foreground: oklch(1 0 180);
|
|
61
|
+
--secondary: oklch(0.25 0.045 271);
|
|
62
|
+
--secondary-foreground: oklch(0.84 0.05 275);
|
|
63
|
+
--accent: oklch(0.28 0.07 277);
|
|
64
|
+
--accent-foreground: oklch(0.9 0.06 274);
|
|
65
|
+
--destructive: oklch(0.62 0.232 29.041);
|
|
66
|
+
--destructive-foreground: oklch(1 0 180);
|
|
67
|
+
--ring: oklch(0.68 0.27 270);
|
|
68
|
+
--chart-1: oklch(0.68 0.27 270);
|
|
69
|
+
--chart-2: oklch(0.25 0.045 271);
|
|
70
|
+
--chart-3: oklch(0.28 0.07 277);
|
|
71
|
+
--chart-4: oklch(0.217 0.013 275.322);
|
|
72
|
+
--chart-5: oklch(0.565 0.244 267.612);
|
|
73
|
+
--sidebar: oklch(0.21 0.05 270.4);
|
|
74
|
+
--sidebar-foreground: oklch(0.955 0.02 278);
|
|
75
|
+
--sidebar-primary: oklch(0.68 0.27 270);
|
|
76
|
+
--sidebar-primary-foreground: oklch(1 0 180);
|
|
77
|
+
--sidebar-accent: oklch(0.28 0.07 277);
|
|
78
|
+
--sidebar-accent-foreground: oklch(0.9 0.06 274);
|
|
79
|
+
--sidebar-border: oklch(0.31 0.065 272);
|
|
80
|
+
--sidebar-ring: oklch(0.68 0.27 270);
|
|
81
|
+
/* Match code-block backgrounds to the surface tone instead of the gray fallback. */
|
|
82
|
+
--shiki-dark-bg: oklch(0.24 0.055 274);
|
|
83
|
+
--shiki-light-bg: oklch(0.98 0.012 280);
|
|
84
|
+
/* Un-shadowed aliases used by the code-block override (Astro's Shiki inline
|
|
85
|
+
vars set on the element would otherwise win). */
|
|
86
|
+
--vortex-ui-shiki-dark-bg: oklch(0.24 0.055 274);
|
|
87
|
+
--vortex-ui-shiki-light-bg: oklch(0.985 0.006 280);
|
|
88
|
+
}
|