create-bunspace 0.3.1 → 0.5.0
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/bin.js +335 -34
- package/dist/templates/fumadocs/MUST-FOLLOW-GUIDELINES.md +1616 -40
- package/dist/templates/monorepo/MUST-FOLLOW-GUIDELINES.md +1616 -40
- package/dist/templates/react-starter/MUST-FOLLOW-GUIDELINES.md +1845 -0
- package/dist/templates/react-starter/README.md +100 -0
- package/dist/templates/react-starter/bun.lock +1298 -0
- package/dist/templates/react-starter/components.json +27 -0
- package/dist/templates/react-starter/eslint.config.js +23 -0
- package/dist/templates/react-starter/index.html +36 -0
- package/dist/templates/react-starter/package.json +57 -0
- package/dist/templates/react-starter/public/registry.json +115 -0
- package/dist/templates/react-starter/public/themes/darkmatteviolet-dark.css +34 -0
- package/dist/templates/react-starter/public/themes/darkmatteviolet-light.css +34 -0
- package/dist/templates/react-starter/public/themes/default-dark.css +33 -0
- package/dist/templates/react-starter/public/themes/default-light.css +34 -0
- package/dist/templates/react-starter/public/themes/graphite-dark.css +34 -0
- package/dist/templates/react-starter/public/themes/graphite-light.css +34 -0
- package/dist/templates/react-starter/public/themes/synthwave84-dark.css +34 -0
- package/dist/templates/react-starter/public/themes/synthwave84-light.css +34 -0
- package/dist/templates/react-starter/public/vite.svg +1 -0
- package/dist/templates/react-starter/src/App.tsx +245 -0
- package/dist/templates/react-starter/src/assets/react.svg +1 -0
- package/dist/templates/react-starter/src/components/ThemeSelector.tsx +106 -0
- package/dist/templates/react-starter/src/components/animate-ui/components/buttons/icon.tsx +86 -0
- package/dist/templates/react-starter/src/components/animate-ui/components/buttons/theme-toggler.tsx +92 -0
- package/dist/templates/react-starter/src/components/animate-ui/primitives/animate/slot.tsx +96 -0
- package/dist/templates/react-starter/src/components/animate-ui/primitives/buttons/button.tsx +31 -0
- package/dist/templates/react-starter/src/components/animate-ui/primitives/effects/particles.tsx +155 -0
- package/dist/templates/react-starter/src/components/animate-ui/primitives/effects/theme-toggler.tsx +148 -0
- package/dist/templates/react-starter/src/components/component-example.tsx +444 -0
- package/dist/templates/react-starter/src/components/example.tsx +56 -0
- package/dist/templates/react-starter/src/index.css +131 -0
- package/dist/templates/react-starter/src/main.tsx +13 -0
- package/dist/templates/react-starter/src/providers/ThemeProvider.tsx +27 -0
- package/dist/templates/react-starter/tsconfig.app.json +36 -0
- package/dist/templates/react-starter/tsconfig.json +13 -0
- package/dist/templates/react-starter/tsconfig.node.json +26 -0
- package/dist/templates/react-starter/vite.config.ts +17 -0
- package/dist/templates/telegram-bot/MUST-FOLLOW-GUIDELINES.md +1845 -0
- package/package.json +6 -3
- package/templates/fumadocs/MUST-FOLLOW-GUIDELINES.md +1616 -40
- package/templates/monorepo/MUST-FOLLOW-GUIDELINES.md +1616 -40
- package/templates/react-starter/MUST-FOLLOW-GUIDELINES.md +1845 -0
- package/templates/react-starter/README.md +100 -0
- package/templates/react-starter/bun.lock +1298 -0
- package/templates/react-starter/components.json +27 -0
- package/templates/react-starter/eslint.config.js +23 -0
- package/templates/react-starter/index.html +36 -0
- package/templates/react-starter/package.json +57 -0
- package/templates/react-starter/public/registry.json +115 -0
- package/templates/react-starter/public/themes/darkmatteviolet-dark.css +34 -0
- package/templates/react-starter/public/themes/darkmatteviolet-light.css +34 -0
- package/templates/react-starter/public/themes/default-dark.css +33 -0
- package/templates/react-starter/public/themes/default-light.css +34 -0
- package/templates/react-starter/public/themes/graphite-dark.css +34 -0
- package/templates/react-starter/public/themes/graphite-light.css +34 -0
- package/templates/react-starter/public/themes/synthwave84-dark.css +34 -0
- package/templates/react-starter/public/themes/synthwave84-light.css +34 -0
- package/templates/react-starter/public/vite.svg +1 -0
- package/templates/react-starter/src/App.tsx +245 -0
- package/templates/react-starter/src/assets/react.svg +1 -0
- package/templates/react-starter/src/components/ThemeSelector.tsx +106 -0
- package/templates/react-starter/src/components/animate-ui/components/buttons/icon.tsx +86 -0
- package/templates/react-starter/src/components/animate-ui/components/buttons/theme-toggler.tsx +92 -0
- package/templates/react-starter/src/components/animate-ui/primitives/animate/slot.tsx +96 -0
- package/templates/react-starter/src/components/animate-ui/primitives/buttons/button.tsx +31 -0
- package/templates/react-starter/src/components/animate-ui/primitives/effects/particles.tsx +155 -0
- package/templates/react-starter/src/components/animate-ui/primitives/effects/theme-toggler.tsx +148 -0
- package/templates/react-starter/src/components/component-example.tsx +444 -0
- package/templates/react-starter/src/components/example.tsx +56 -0
- package/templates/react-starter/src/index.css +131 -0
- package/templates/react-starter/src/main.tsx +13 -0
- package/templates/react-starter/src/providers/ThemeProvider.tsx +27 -0
- package/templates/react-starter/tsconfig.app.json +36 -0
- package/templates/react-starter/tsconfig.json +13 -0
- package/templates/react-starter/tsconfig.node.json +26 -0
- package/templates/react-starter/vite.config.ts +17 -0
- package/templates/telegram-bot/MUST-FOLLOW-GUIDELINES.md +1845 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema.json",
|
|
3
|
+
"style": "base-nova",
|
|
4
|
+
"rsc": false,
|
|
5
|
+
"tsx": true,
|
|
6
|
+
"tailwind": {
|
|
7
|
+
"config": "",
|
|
8
|
+
"css": "src/index.css",
|
|
9
|
+
"baseColor": "neutral",
|
|
10
|
+
"cssVariables": true,
|
|
11
|
+
"prefix": ""
|
|
12
|
+
},
|
|
13
|
+
"iconLibrary": "hugeicons",
|
|
14
|
+
"rtl": false,
|
|
15
|
+
"menuColor": "default",
|
|
16
|
+
"menuAccent": "subtle",
|
|
17
|
+
"aliases": {
|
|
18
|
+
"components": "@/components",
|
|
19
|
+
"utils": "@/lib/utils",
|
|
20
|
+
"ui": "@/components/ui",
|
|
21
|
+
"lib": "@/lib",
|
|
22
|
+
"hooks": "@/hooks"
|
|
23
|
+
},
|
|
24
|
+
"registries": {
|
|
25
|
+
"@animate-ui": "https://animate-ui.com/r/{name}.json"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import js from '@eslint/js'
|
|
2
|
+
import globals from 'globals'
|
|
3
|
+
import reactHooks from 'eslint-plugin-react-hooks'
|
|
4
|
+
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
5
|
+
import tseslint from 'typescript-eslint'
|
|
6
|
+
import { defineConfig, globalIgnores } from 'eslint/config'
|
|
7
|
+
|
|
8
|
+
export default defineConfig([
|
|
9
|
+
globalIgnores(['dist']),
|
|
10
|
+
{
|
|
11
|
+
files: ['**/*.{ts,tsx}'],
|
|
12
|
+
extends: [
|
|
13
|
+
js.configs.recommended,
|
|
14
|
+
tseslint.configs.recommended,
|
|
15
|
+
reactHooks.configs.flat.recommended,
|
|
16
|
+
reactRefresh.configs.vite,
|
|
17
|
+
],
|
|
18
|
+
languageOptions: {
|
|
19
|
+
ecmaVersion: 2020,
|
|
20
|
+
globals: globals.browser,
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
])
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<script type="module">
|
|
5
|
+
if (import.meta.env.DEV) {
|
|
6
|
+
import("react-grab");
|
|
7
|
+
import("@react-grab/mcp/client");
|
|
8
|
+
}
|
|
9
|
+
</script>
|
|
10
|
+
<meta charset="UTF-8" />
|
|
11
|
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
12
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
13
|
+
<title>{{PROJECT_TITLE}}</title>
|
|
14
|
+
<meta name="description" content="{{DESCRIPTION}}" />
|
|
15
|
+
<script id="theme-fouc-prevention">(function(){try{var t=localStorage.getItem('theme-current');
|
|
16
|
+
var m=localStorage.getItem('theme-mode');
|
|
17
|
+
|
|
18
|
+
if(!t||!m){try{var c=localStorage.getItem('theme-mode-config');if(c){var p=JSON.parse(c);if(!t&&p.currentTheme)t=p.currentTheme;if(!m&&p.currentMode)m=p.currentMode;}}catch(e){}}
|
|
19
|
+
|
|
20
|
+
t=t||'default';m=m||'auto';
|
|
21
|
+
|
|
22
|
+
var em=m==='auto'?(window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light'):m;
|
|
23
|
+
|
|
24
|
+
var d=document.documentElement;
|
|
25
|
+
d.setAttribute('data-theme',t);
|
|
26
|
+
d.setAttribute('data-mode',em);
|
|
27
|
+
d.style.colorScheme=em;
|
|
28
|
+
if(em==='dark'){d.classList.add('dark');}else{d.classList.remove('dark');}
|
|
29
|
+
|
|
30
|
+
try{var cv=localStorage.getItem('theme-css-vars');if(cv){var vars=JSON.parse(cv);for(var k in vars){if(vars.hasOwnProperty(k))d.style.setProperty(k,vars[k]);}}}catch(e){}}catch(e){console.warn('FOUC prevention failed:',e);}})();</script>
|
|
31
|
+
</head>
|
|
32
|
+
<body>
|
|
33
|
+
<div id="root"></div>
|
|
34
|
+
<script type="module" src="/src/main.tsx"></script>
|
|
35
|
+
</body>
|
|
36
|
+
</html>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "{{PROJECT_NAME}}",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "{{DESCRIPTION}}",
|
|
6
|
+
"author": "{{AUTHOR}}",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "vite",
|
|
11
|
+
"build": "tsc -b && vite build",
|
|
12
|
+
"lint": "eslint ",
|
|
13
|
+
"preview": "vite preview"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@base-ui/react": "^1.1.0",
|
|
17
|
+
"@fontsource-variable/geist-mono": "^5.2.7",
|
|
18
|
+
"@hugeicons/core-free-icons": "^3.1.1",
|
|
19
|
+
"@hugeicons/react": "^1.1.5",
|
|
20
|
+
"@mks2508/better-logger": "latest",
|
|
21
|
+
"@mks2508/mks-ui": "latest",
|
|
22
|
+
"@mks2508/no-throw": "latest",
|
|
23
|
+
"@mks2508/shadcn-basecoat-theme-manager": "latest",
|
|
24
|
+
"@mks2508/sidebar-headless": "latest",
|
|
25
|
+
"@mks2508/theme-manager-react": "latest",
|
|
26
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
27
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
28
|
+
"class-variance-authority": "^0.7.1",
|
|
29
|
+
"clsx": "^2.1.1",
|
|
30
|
+
"lucide-react": "^0.563.0",
|
|
31
|
+
"motion": "^12.34.0",
|
|
32
|
+
"react": "^19.2.0",
|
|
33
|
+
"shadcn": "^3.8.4",
|
|
34
|
+
"tailwind-merge": "^3.4.0",
|
|
35
|
+
"tailwindcss": "^4.1.17",
|
|
36
|
+
"tw-animate-css": "^1.4.0"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@eslint/js": "^10.0.1",
|
|
40
|
+
"@react-grab/mcp": "^0.1.14",
|
|
41
|
+
"@types/node": "^25.2.3",
|
|
42
|
+
"@types/react": "^19.2.7",
|
|
43
|
+
"@types/react-dom": "^19.2.3",
|
|
44
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
45
|
+
"eslint": "^10.0.0",
|
|
46
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
47
|
+
"eslint-plugin-react-refresh": "^0.5.0",
|
|
48
|
+
"globals": "^17.3.0",
|
|
49
|
+
"react-grab": "^0.1.14",
|
|
50
|
+
"typescript": "~5.9.3",
|
|
51
|
+
"typescript-eslint": "^8.48.0",
|
|
52
|
+
"vite": "^8.0.0-beta.14"
|
|
53
|
+
},
|
|
54
|
+
"overrides": {
|
|
55
|
+
"vite": "^8.0.0-beta.13"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"lastUpdated": "2026-02-12T21:48:18.387Z",
|
|
4
|
+
"themes": [
|
|
5
|
+
{
|
|
6
|
+
"id": "default",
|
|
7
|
+
"name": "default",
|
|
8
|
+
"label": "Default",
|
|
9
|
+
"description": "Original project theme extracted from CSS variables",
|
|
10
|
+
"author": "Project",
|
|
11
|
+
"version": "1.0.0",
|
|
12
|
+
"source": "local",
|
|
13
|
+
"category": "built-in",
|
|
14
|
+
"default": true,
|
|
15
|
+
"modes": {
|
|
16
|
+
"light": "/themes/default-light.css",
|
|
17
|
+
"dark": "/themes/default-dark.css"
|
|
18
|
+
},
|
|
19
|
+
"fonts": {
|
|
20
|
+
"sans": "system-ui, sans-serif",
|
|
21
|
+
"serif": "Georgia, serif",
|
|
22
|
+
"mono": "monospace"
|
|
23
|
+
},
|
|
24
|
+
"preview": {
|
|
25
|
+
"primary": "oklch(0.577 0.245 27.325)",
|
|
26
|
+
"background": "oklch(1 0 0)",
|
|
27
|
+
"accent": "oklch(0.97 0 0)"
|
|
28
|
+
},
|
|
29
|
+
"config": {
|
|
30
|
+
"radius": "0.625rem"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "synthwave84",
|
|
35
|
+
"name": "synthwave84",
|
|
36
|
+
"label": "Synthwave84",
|
|
37
|
+
"description": "Retro-futuristic neon theme with vibrant pink and purple accents",
|
|
38
|
+
"author": "System",
|
|
39
|
+
"version": "1.0.0",
|
|
40
|
+
"source": "local",
|
|
41
|
+
"category": "built-in",
|
|
42
|
+
"modes": {
|
|
43
|
+
"light": "/themes/synthwave84-light.css",
|
|
44
|
+
"dark": "/themes/synthwave84-dark.css"
|
|
45
|
+
},
|
|
46
|
+
"fonts": {
|
|
47
|
+
"sans": "system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif",
|
|
48
|
+
"serif": "Georgia, Cambria, \"Times New Roman\", Times, serif",
|
|
49
|
+
"mono": "\"Fira Code\", Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace"
|
|
50
|
+
},
|
|
51
|
+
"preview": {
|
|
52
|
+
"primary": "oklch(0.5220 0.1732 16.5777)",
|
|
53
|
+
"background": "oklch(0.9640 0.0085 304.2185)",
|
|
54
|
+
"accent": "oklch(0.9253 0.0228 6.0819)"
|
|
55
|
+
},
|
|
56
|
+
"config": {
|
|
57
|
+
"radius": "0.5rem"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "graphite",
|
|
62
|
+
"name": "graphite",
|
|
63
|
+
"label": "Graphite",
|
|
64
|
+
"description": "Elegant grayscale theme with subtle shadows",
|
|
65
|
+
"author": "System",
|
|
66
|
+
"version": "1.0.0",
|
|
67
|
+
"source": "local",
|
|
68
|
+
"category": "built-in",
|
|
69
|
+
"modes": {
|
|
70
|
+
"light": "/themes/graphite-light.css",
|
|
71
|
+
"dark": "/themes/graphite-dark.css"
|
|
72
|
+
},
|
|
73
|
+
"fonts": {
|
|
74
|
+
"sans": "Montserrat, sans-serif",
|
|
75
|
+
"serif": "Georgia, serif",
|
|
76
|
+
"mono": "Fira Code, monospace"
|
|
77
|
+
},
|
|
78
|
+
"preview": {
|
|
79
|
+
"primary": "oklch(0.4891 0 0)",
|
|
80
|
+
"background": "oklch(0.9551 0 0)",
|
|
81
|
+
"accent": "oklch(0.8078 0 0)"
|
|
82
|
+
},
|
|
83
|
+
"config": {
|
|
84
|
+
"radius": "0.35rem"
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"id": "darkmatteviolet",
|
|
89
|
+
"name": "darkmatteviolet",
|
|
90
|
+
"label": "Dark Matte Violet",
|
|
91
|
+
"description": "Purple-accented theme with monospace aesthetics",
|
|
92
|
+
"author": "System",
|
|
93
|
+
"version": "1.0.0",
|
|
94
|
+
"source": "local",
|
|
95
|
+
"category": "built-in",
|
|
96
|
+
"modes": {
|
|
97
|
+
"light": "/themes/darkmatteviolet-light.css",
|
|
98
|
+
"dark": "/themes/darkmatteviolet-dark.css"
|
|
99
|
+
},
|
|
100
|
+
"fonts": {
|
|
101
|
+
"sans": "Geist Mono, ui-monospace, monospace",
|
|
102
|
+
"serif": "serif",
|
|
103
|
+
"mono": "JetBrains Mono, monospace"
|
|
104
|
+
},
|
|
105
|
+
"preview": {
|
|
106
|
+
"primary": "oklch(0.5452 0.2088 308.6980)",
|
|
107
|
+
"background": "oklch(1.0000 0 0)",
|
|
108
|
+
"accent": "oklch(0.9491 0 0)"
|
|
109
|
+
},
|
|
110
|
+
"config": {
|
|
111
|
+
"radius": "0.75rem"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(0.1797 0.0043 308.1928);
|
|
3
|
+
--foreground: oklch(0.8109 0 0);
|
|
4
|
+
--card: oklch(0.1822 0 0);
|
|
5
|
+
--card-foreground: oklch(0.8109 0 0);
|
|
6
|
+
--popover: oklch(0.1797 0.0043 308.1928);
|
|
7
|
+
--popover-foreground: oklch(0.8109 0 0);
|
|
8
|
+
--primary: oklch(0.3275 0.1247 308.6980);
|
|
9
|
+
--primary-foreground: oklch(0.1797 0.0043 308.1928);
|
|
10
|
+
--secondary: oklch(0.7826 0 0);
|
|
11
|
+
--secondary-foreground: oklch(0.1797 0.0043 308.1928);
|
|
12
|
+
--muted: oklch(0.2520 0 0);
|
|
13
|
+
--muted-foreground: oklch(0.6268 0 0);
|
|
14
|
+
--accent: oklch(0.3211 0 0);
|
|
15
|
+
--accent-foreground: oklch(0.8109 0 0);
|
|
16
|
+
--destructive: oklch(0.5940 0.0443 196.0233);
|
|
17
|
+
--destructive-foreground: oklch(0.1797 0.0043 308.1928);
|
|
18
|
+
--border: oklch(0.2520 0 0);
|
|
19
|
+
--input: oklch(0.2520 0 0);
|
|
20
|
+
--ring: oklch(0.7214 0.1337 49.9802);
|
|
21
|
+
--chart-1: oklch(0.5940 0.0443 196.0233);
|
|
22
|
+
--chart-2: oklch(0.7214 0.1337 49.9802);
|
|
23
|
+
--chart-3: oklch(0.8721 0.0864 68.5474);
|
|
24
|
+
--chart-4: oklch(0.6268 0 0);
|
|
25
|
+
--chart-5: oklch(0.6830 0 0);
|
|
26
|
+
--sidebar: oklch(0.1822 0 0);
|
|
27
|
+
--sidebar-foreground: oklch(0.8109 0 0);
|
|
28
|
+
--sidebar-primary: oklch(0.3275 0.1247 308.6980);
|
|
29
|
+
--sidebar-primary-foreground: oklch(0.1797 0.0043 308.1928);
|
|
30
|
+
--sidebar-accent: oklch(0.3211 0 0);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.8109 0 0);
|
|
32
|
+
--sidebar-border: oklch(0.2520 0 0);
|
|
33
|
+
--sidebar-ring: oklch(0.7214 0.1337 49.9802);
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(1.0000 0 0);
|
|
3
|
+
--foreground: oklch(0.2101 0.0318 264.6645);
|
|
4
|
+
--card: oklch(1.0000 0 0);
|
|
5
|
+
--card-foreground: oklch(0.2101 0.0318 264.6645);
|
|
6
|
+
--popover: oklch(1.0000 0 0);
|
|
7
|
+
--popover-foreground: oklch(0.2101 0.0318 264.6645);
|
|
8
|
+
--primary: oklch(0.5452 0.2088 308.6980);
|
|
9
|
+
--primary-foreground: oklch(1.0000 0 0);
|
|
10
|
+
--secondary: oklch(0.5360 0.0398 196.0278);
|
|
11
|
+
--secondary-foreground: oklch(1.0000 0 0);
|
|
12
|
+
--muted: oklch(0.9670 0.0029 264.5419);
|
|
13
|
+
--muted-foreground: oklch(0.5510 0.0234 264.3637);
|
|
14
|
+
--accent: oklch(0.9491 0 0);
|
|
15
|
+
--accent-foreground: oklch(0.2101 0.0318 264.6645);
|
|
16
|
+
--destructive: oklch(0.6368 0.2078 25.3313);
|
|
17
|
+
--destructive-foreground: oklch(0.9851 0 0);
|
|
18
|
+
--border: oklch(0.9276 0.0058 264.5313);
|
|
19
|
+
--input: oklch(0.9276 0.0058 264.5313);
|
|
20
|
+
--ring: oklch(0.6716 0.1368 48.5130);
|
|
21
|
+
--chart-1: oklch(0.5940 0.0443 196.0233);
|
|
22
|
+
--chart-2: oklch(0.7214 0.1337 49.9802);
|
|
23
|
+
--chart-3: oklch(0.8721 0.0864 68.5474);
|
|
24
|
+
--chart-4: oklch(0.6268 0 0);
|
|
25
|
+
--chart-5: oklch(0.6830 0 0);
|
|
26
|
+
--sidebar: oklch(0.9670 0.0029 264.5419);
|
|
27
|
+
--sidebar-foreground: oklch(0.2101 0.0318 264.6645);
|
|
28
|
+
--sidebar-primary: oklch(0.6716 0.1368 48.5130);
|
|
29
|
+
--sidebar-primary-foreground: oklch(1.0000 0 0);
|
|
30
|
+
--sidebar-accent: oklch(1.0000 0 0);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.2101 0.0318 264.6645);
|
|
32
|
+
--sidebar-border: oklch(0.9276 0.0058 264.5313);
|
|
33
|
+
--sidebar-ring: oklch(0.6716 0.1368 48.5130);
|
|
34
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(0.145 0 0);
|
|
3
|
+
--foreground: oklch(0.985 0 0);
|
|
4
|
+
--card: oklch(0.205 0 0);
|
|
5
|
+
--card-foreground: oklch(0.985 0 0);
|
|
6
|
+
--popover: oklch(0.205 0 0);
|
|
7
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
8
|
+
--primary: oklch(0.637 0.237 25.331);
|
|
9
|
+
--primary-foreground: oklch(0.971 0.013 17.38);
|
|
10
|
+
--secondary: oklch(0.274 0.006 286.033);
|
|
11
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
12
|
+
--muted: oklch(0.269 0 0);
|
|
13
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
14
|
+
--accent: oklch(0.371 0 0);
|
|
15
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
16
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
17
|
+
--border: oklch(1 0 0 / 10%);
|
|
18
|
+
--input: oklch(1 0 0 / 15%);
|
|
19
|
+
--ring: oklch(0.556 0 0);
|
|
20
|
+
--chart-1: oklch(0.808 0.114 19.571);
|
|
21
|
+
--chart-2: oklch(0.637 0.237 25.331);
|
|
22
|
+
--chart-3: oklch(0.577 0.245 27.325);
|
|
23
|
+
--chart-4: oklch(0.505 0.213 27.518);
|
|
24
|
+
--chart-5: oklch(0.444 0.177 26.899);
|
|
25
|
+
--sidebar: oklch(0.205 0 0);
|
|
26
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
27
|
+
--sidebar-primary: oklch(0.637 0.237 25.331);
|
|
28
|
+
--sidebar-primary-foreground: oklch(0.971 0.013 17.38);
|
|
29
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
30
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
31
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
32
|
+
--sidebar-ring: oklch(0.556 0 0);
|
|
33
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(1 0 0);
|
|
3
|
+
--foreground: oklch(0.145 0 0);
|
|
4
|
+
--card: oklch(1 0 0);
|
|
5
|
+
--card-foreground: oklch(0.145 0 0);
|
|
6
|
+
--popover: oklch(1 0 0);
|
|
7
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
8
|
+
--primary: oklch(0.577 0.245 27.325);
|
|
9
|
+
--primary-foreground: oklch(0.971 0.013 17.38);
|
|
10
|
+
--secondary: oklch(0.967 0.001 286.375);
|
|
11
|
+
--secondary-foreground: oklch(0.21 0.006 285.885);
|
|
12
|
+
--muted: oklch(0.97 0 0);
|
|
13
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
14
|
+
--accent: oklch(0.97 0 0);
|
|
15
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
16
|
+
--destructive: oklch(0.58 0.22 27);
|
|
17
|
+
--border: oklch(0.922 0 0);
|
|
18
|
+
--input: oklch(0.922 0 0);
|
|
19
|
+
--ring: oklch(0.708 0 0);
|
|
20
|
+
--chart-1: oklch(0.808 0.114 19.571);
|
|
21
|
+
--chart-2: oklch(0.637 0.237 25.331);
|
|
22
|
+
--chart-3: oklch(0.577 0.245 27.325);
|
|
23
|
+
--chart-4: oklch(0.505 0.213 27.518);
|
|
24
|
+
--chart-5: oklch(0.444 0.177 26.899);
|
|
25
|
+
--radius: 0.625rem;
|
|
26
|
+
--sidebar: oklch(0.985 0 0);
|
|
27
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
28
|
+
--sidebar-primary: oklch(0.577 0.245 27.325);
|
|
29
|
+
--sidebar-primary-foreground: oklch(0.971 0.013 17.38);
|
|
30
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
32
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
33
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(0.2178 0 0);
|
|
3
|
+
--foreground: oklch(0.8853 0 0);
|
|
4
|
+
--card: oklch(0.2435 0 0);
|
|
5
|
+
--card-foreground: oklch(0.8853 0 0);
|
|
6
|
+
--popover: oklch(0.2435 0 0);
|
|
7
|
+
--popover-foreground: oklch(0.8853 0 0);
|
|
8
|
+
--primary: oklch(0.7058 0 0);
|
|
9
|
+
--primary-foreground: oklch(0.2178 0 0);
|
|
10
|
+
--secondary: oklch(0.3092 0 0);
|
|
11
|
+
--secondary-foreground: oklch(0.8853 0 0);
|
|
12
|
+
--muted: oklch(0.2850 0 0);
|
|
13
|
+
--muted-foreground: oklch(0.5999 0 0);
|
|
14
|
+
--accent: oklch(0.3715 0 0);
|
|
15
|
+
--accent-foreground: oklch(0.8853 0 0);
|
|
16
|
+
--destructive: oklch(0.6591 0.1530 22.1703);
|
|
17
|
+
--destructive-foreground: oklch(1.0000 0 0);
|
|
18
|
+
--border: oklch(0.3290 0 0);
|
|
19
|
+
--input: oklch(0.3092 0 0);
|
|
20
|
+
--ring: oklch(0.7058 0 0);
|
|
21
|
+
--chart-1: oklch(0.7058 0 0);
|
|
22
|
+
--chart-2: oklch(0.6714 0.0339 206.3482);
|
|
23
|
+
--chart-3: oklch(0.5452 0 0);
|
|
24
|
+
--chart-4: oklch(0.4604 0 0);
|
|
25
|
+
--chart-5: oklch(0.3715 0 0);
|
|
26
|
+
--sidebar: oklch(0.2393 0 0);
|
|
27
|
+
--sidebar-foreground: oklch(0.8853 0 0);
|
|
28
|
+
--sidebar-primary: oklch(0.7058 0 0);
|
|
29
|
+
--sidebar-primary-foreground: oklch(0.2178 0 0);
|
|
30
|
+
--sidebar-accent: oklch(0.3715 0 0);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.8853 0 0);
|
|
32
|
+
--sidebar-border: oklch(0.3290 0 0);
|
|
33
|
+
--sidebar-ring: oklch(0.7058 0 0);
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(0.9551 0 0);
|
|
3
|
+
--foreground: oklch(0.3211 0 0);
|
|
4
|
+
--card: oklch(0.9702 0 0);
|
|
5
|
+
--card-foreground: oklch(0.3211 0 0);
|
|
6
|
+
--popover: oklch(0.9702 0 0);
|
|
7
|
+
--popover-foreground: oklch(0.3211 0 0);
|
|
8
|
+
--primary: oklch(0.4891 0 0);
|
|
9
|
+
--primary-foreground: oklch(1.0000 0 0);
|
|
10
|
+
--secondary: oklch(0.9067 0 0);
|
|
11
|
+
--secondary-foreground: oklch(0.3211 0 0);
|
|
12
|
+
--muted: oklch(0.8853 0 0);
|
|
13
|
+
--muted-foreground: oklch(0.5103 0 0);
|
|
14
|
+
--accent: oklch(0.8078 0 0);
|
|
15
|
+
--accent-foreground: oklch(0.3211 0 0);
|
|
16
|
+
--destructive: oklch(0.5594 0.1900 25.8625);
|
|
17
|
+
--destructive-foreground: oklch(1.0000 0 0);
|
|
18
|
+
--border: oklch(0.8576 0 0);
|
|
19
|
+
--input: oklch(0.9067 0 0);
|
|
20
|
+
--ring: oklch(0.4891 0 0);
|
|
21
|
+
--chart-1: oklch(0.4891 0 0);
|
|
22
|
+
--chart-2: oklch(0.4863 0.0361 196.0278);
|
|
23
|
+
--chart-3: oklch(0.6534 0 0);
|
|
24
|
+
--chart-4: oklch(0.7316 0 0);
|
|
25
|
+
--chart-5: oklch(0.8078 0 0);
|
|
26
|
+
--sidebar: oklch(0.9370 0 0);
|
|
27
|
+
--sidebar-foreground: oklch(0.3211 0 0);
|
|
28
|
+
--sidebar-primary: oklch(0.4891 0 0);
|
|
29
|
+
--sidebar-primary-foreground: oklch(1.0000 0 0);
|
|
30
|
+
--sidebar-accent: oklch(0.8078 0 0);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.3211 0 0);
|
|
32
|
+
--sidebar-border: oklch(0.8576 0 0);
|
|
33
|
+
--sidebar-ring: oklch(0.4891 0 0);
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(0.2173 0.0342 302.0199);
|
|
3
|
+
--foreground: oklch(0.9314 0.0114 304.1690);
|
|
4
|
+
--card: oklch(0.2453 0.0414 301.8378);
|
|
5
|
+
--card-foreground: oklch(0.9314 0.0114 304.1690);
|
|
6
|
+
--popover: oklch(0.2173 0.0342 302.0199);
|
|
7
|
+
--popover-foreground: oklch(0.9314 0.0114 304.1690);
|
|
8
|
+
--primary: oklch(0.5984 0.1849 15.2585);
|
|
9
|
+
--primary-foreground: oklch(0.1482 0.0159 302.8687);
|
|
10
|
+
--secondary: oklch(0.5548 0.1570 299.7522);
|
|
11
|
+
--secondary-foreground: oklch(0.1482 0.0159 302.8687);
|
|
12
|
+
--muted: oklch(0.2932 0.0472 301.9627);
|
|
13
|
+
--muted-foreground: oklch(0.6989 0.0404 303.5176);
|
|
14
|
+
--accent: oklch(0.3011 0.0708 300.6900);
|
|
15
|
+
--accent-foreground: oklch(0.9830 0.0028 304.3041);
|
|
16
|
+
--destructive: oklch(0.5594 0.1900 25.8625);
|
|
17
|
+
--destructive-foreground: oklch(1.0000 0 0);
|
|
18
|
+
--border: oklch(0.3314 0.0679 301.2299);
|
|
19
|
+
--input: oklch(0.2884 0.0564 301.3913);
|
|
20
|
+
--ring: oklch(0.5984 0.1849 15.2585);
|
|
21
|
+
--chart-1: oklch(0.5984 0.1849 15.2585);
|
|
22
|
+
--chart-2: oklch(0.5548 0.1570 299.7522);
|
|
23
|
+
--chart-3: oklch(0.7344 0.1333 71.6718);
|
|
24
|
+
--chart-4: oklch(0.6799 0.1097 233.4350);
|
|
25
|
+
--chart-5: oklch(0.4732 0.1111 12.0431);
|
|
26
|
+
--sidebar: oklch(0.1971 0.0313 301.9982);
|
|
27
|
+
--sidebar-foreground: oklch(0.9141 0.0144 304.1198);
|
|
28
|
+
--sidebar-primary: oklch(0.5984 0.1849 15.2585);
|
|
29
|
+
--sidebar-primary-foreground: oklch(0.1482 0.0159 302.8687);
|
|
30
|
+
--sidebar-accent: oklch(0.2708 0.0516 301.4739);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.9830 0.0028 304.3041);
|
|
32
|
+
--sidebar-border: oklch(0.2884 0.0564 301.3913);
|
|
33
|
+
--sidebar-ring: oklch(0.5984 0.1849 15.2585);
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--background: oklch(0.9640 0.0085 304.2185);
|
|
3
|
+
--foreground: oklch(0.2338 0.0651 299.8496);
|
|
4
|
+
--card: oklch(0.9459 0.0128 304.1508);
|
|
5
|
+
--card-foreground: oklch(0.1896 0.0463 300.5199);
|
|
6
|
+
--popover: oklch(0.9640 0.0085 304.2185);
|
|
7
|
+
--popover-foreground: oklch(0.2338 0.0651 299.8496);
|
|
8
|
+
--primary: oklch(0.5220 0.1732 16.5777);
|
|
9
|
+
--primary-foreground: oklch(1.0000 0 0);
|
|
10
|
+
--secondary: oklch(0.4767 0.1438 299.3540);
|
|
11
|
+
--secondary-foreground: oklch(1.0000 0 0);
|
|
12
|
+
--muted: oklch(0.9164 0.0108 304.1766);
|
|
13
|
+
--muted-foreground: oklch(0.4700 0.0673 302.2431);
|
|
14
|
+
--accent: oklch(0.9253 0.0228 6.0819);
|
|
15
|
+
--accent-foreground: oklch(0.3463 0.1084 15.4715);
|
|
16
|
+
--destructive: oklch(0.5714 0.2121 27.2502);
|
|
17
|
+
--destructive-foreground: oklch(1.0000 0 0);
|
|
18
|
+
--border: oklch(0.8704 0.0218 303.9860);
|
|
19
|
+
--input: oklch(0.8704 0.0218 303.9860);
|
|
20
|
+
--ring: oklch(0.5220 0.1732 16.5777);
|
|
21
|
+
--chart-1: oklch(0.5220 0.1732 16.5777);
|
|
22
|
+
--chart-2: oklch(0.4767 0.1438 299.3540);
|
|
23
|
+
--chart-3: oklch(0.7263 0.1543 67.1779);
|
|
24
|
+
--chart-4: oklch(0.6611 0.1326 236.6908);
|
|
25
|
+
--chart-5: oklch(0.6444 0.0626 302.9428);
|
|
26
|
+
--sidebar: oklch(0.9277 0.0172 304.0797);
|
|
27
|
+
--sidebar-foreground: oklch(0.2763 0.0825 299.4191);
|
|
28
|
+
--sidebar-primary: oklch(0.5220 0.1732 16.5777);
|
|
29
|
+
--sidebar-primary-foreground: oklch(1.0000 0 0);
|
|
30
|
+
--sidebar-accent: oklch(0.8939 0.0217 303.9977);
|
|
31
|
+
--sidebar-accent-foreground: oklch(0.2763 0.0825 299.4191);
|
|
32
|
+
--sidebar-border: oklch(0.8704 0.0218 303.9860);
|
|
33
|
+
--sidebar-ring: oklch(0.5220 0.1732 16.5777);
|
|
34
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|