-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
47 lines (46 loc) · 1.09 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
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: {
animation: {
"pulse-slow": "pulse 10s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
},
},
daisyui: {
themes: [
{
myLight: {
primary: "#86efac",
secondary: "#bbf7d0",
accent: "#22c55e",
neutral: "#44403c",
"base-100": "#e5e5e5",
info: "#06b6d4",
success: "#4ade80",
warning: "#fb923c",
error: "#b91c1c",
},
myDark: {
primary: "#15803d",
secondary: "#166534",
accent: "#22c55e",
neutral: "#44403c",
"base-100": "#292524",
info: "#06b6d4",
success: "#4ade80",
warning: "#fb923c",
error: "#b91c1c",
},
},
],
darkTheme: "myDark",
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
};
export default config;