-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
148 lines (140 loc) · 5.24 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import type {Config} from "tailwindcss";
import typography from '@tailwindcss/typography';
import daisyui from 'daisyui';
const config: Config = {
content: ["./src/pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}",],
safelist: [
'alert-success',
'alert-info',
'alert-warning',
'alert-error',
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
},
},
plugins: [typography, daisyui],
daisyui: {
themes: [{
ctrlpanel: {
"primary": "#10B981",
"secondary": "#8B5CF6",
"accent": "#EC4899",
"neutral": "#1E293B",
"base-100": "#0F172A",
"info": "#3B82F6",
"success": "#22C55E",
"warning": "#F59E0B",
"error": "#EF4444",
"--rounded-box": "0.50rem",
"--rounded-btn": "0.375rem",
"--rounded-badge": "1.5rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "0.97",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.375rem"
},
ctrlpanel_dark: {
"primary": "#10B981", // Green as the primary color
"secondary": "#b9109d", // Neutral grey for secondary elements
"accent": "#b99110", // Accent color for non-primary highlights
"neutral": "#0a0a0a", // Pure black for neutral background elements
"base-100": "#0a0a0a", // Very dark grey for the main background
"info": "#3B82F6", // Blue for informational elements
"success": "#22C55E", // Green for success states
"warning": "#F59E0B", // Orange for warning states
"error": "#EF4444", // Red for error states
// Border, button, and element styles that match the sleek, minimal design in the image
"--rounded-box": "0.5rem", // Slightly rounded boxes for cards and containers
"--rounded-btn": "0.375rem", // Button rounding for a clean look
"--rounded-badge": "1.25rem", // Rounded badges, slightly softer look
"--animation-btn": "0.25s", // Button hover animation speed
"--animation-input": "0.2s", // Input focus animation speed
"--btn-focus-scale": "0.97", // Slight focus scale on buttons
"--border-btn": "1px", // Thin button border for clean definition
"--tab-border": "1px", // Thin tab border for minimalist look
"--tab-radius": "0.375rem", // Slightly rounded tabs
},
soly: {
"primary": "#6366F1",
"secondary": "#383b48",
"accent": "#F43F5E",
"neutral": "#1F2028",
"base-100": "#181A20",
"info": "#3B82F6",
"success": "#10B981",
"warning": "#F59E0B",
"error": "#EF4444",
"--rounded-box": "0.50rem",
"--rounded-btn": "0.375rem",
"--rounded-badge": "1.5rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "0.97",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.375rem",
},
firestorm: {
"primary": "#FF5722",
"secondary": "#212121",
"accent": "#FF9800",
"neutral": "#1C1C1C",
"base-100": "#121212",
"info": "#FF7043",
"success": "#FFC107",
"warning": "#FF8F00",
"error": "#D32F2F",
"--rounded-box": "0.50rem",
"--rounded-btn": "0.375rem",
"--rounded-badge": "1.5rem",
"--animation-btn": "0.25s",
"--animation-input": "0.2s",
"--btn-focus-scale": "0.97",
"--border-btn": "1px",
"--tab-border": "1px",
"--tab-radius": "0.375rem",
}
},
"light",
"dark",
"cupcake",
"bumblebee",
"emerald",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"aqua",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter",
"dim",
"nord",
"sunset",
],
},
};
export default config;