-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
50 lines (49 loc) · 1.12 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
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: {
colors: {
'neon-gradient-from': '#7068F4',
'neon-gradient-via': '#FF64B4',
'neon-gradient-to': '#FFD94A',
},
boxShadow: {
'neon': '0 0 6px rgba(255, 255, 255, 0.5)',
},
backgroundImage: {
'neon-gradient': 'linear-gradient(to bottom, #7068F4, #FF64B4, #FFD94A)',
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: [
{
mytheme: {
"primary": "#7068F4",
"secondary": "#FF64B4",
"accent": "#FFD94A",
"neutral": "#d1d5db",
"base-100": "#12181B",
"info": "#38bdf8",
"success": "#4ade80",
"warning": "#facc15",
"error": "#f43f5e",
},
},
],
darkTheme: "dark",
base: true,
styled: true,
utils: true,
prefix: "",
logs: true,
themeRoot: ":root",
},
};
export default config;