-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
69 lines (60 loc) · 1.74 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
// "primary-dark": "#282a36",
// "second-dark": "#44475a",
// "base-content": "#f8f8f2",
// "black-blue": "#6272a4",
// "primary-cyan": "oklch(var(--p))",
// "primary-green": "#50fa7b",
"transparent-green": "rgba(80, 250, 123, 0.50)",
"transparent-pink": "rgba(255, 121, 198, 0.50)",
// "accent": "rgba(255, 121, 198, 0.30)",
// "primary-orange": "#ffb86c",
// "accent": "#ff79c6",
// "secondary": "#bd93f9",
// "error": "#ff5555",
// "primary-yellow": "#f1fa8c",
},
boxShadow: {
"green-shadow": "0px 0px 40px 45px rgba(80, 250, 123, 0.50)",
"pink-shadow": "0px 0px 40px 45px rgba(255, 121, 198, 0.50)",
},
minHeight: {
main: "calc(100vh - 80px - 24px)",
},
},
},
daisyui: {
themes: [
"night",
// {
// mytheme: {
// primary: "#282a36",
// secondary: "#f8f8f2",
// accent: "oklch(var(--p))",
// neutral: "#ff79c6",
// "base-100": "#44475a",
// info: "#0000ff",
// success: "#50fa7b",
// warning: "#f1fa8c",
// error: "#ff5555",
// },
// },
],
},
plugins: [require("daisyui")],
};
export default config;