-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
63 lines (62 loc) · 1.85 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
import type { Config } from "tailwindcss";
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}",
],
theme: {
extend: {
animation: {
messagerec: "fadeInRight 300ms ease-out",
messagesend: "fadeInBottom 200ms ease-in forwards",
},
keyframes: {
fadeInRight: {
"0%": {
opacity: "0",
transform: "translateX(2rem)",
},
"100%": {
opacity: "1",
transform: "translateX(0)",
},
},
fadeInBottom: {
"0%": {
opacity: "0",
transform: "translateY(2rem)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
},
},
plugins: [require("daisyui")],
daisyui: {
styled: false,
themes: [
{
light: {
primary: "#405060",
secondary: "#c0d0e0",
accent: "#222222",
neutral: "#f5f5f5",
"base-100": "#ffffff",
"base-200": "#ffffff",
"base-300": "#e0e0e0",
},
business: {
...require("daisyui/src/theming/themes")["business"],
secondary: "#405060",
accent: "#23c19d",
},
},
],
// base:false
},
};
export default config;