-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (61 loc) · 1.39 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
zIndex: {
1000: "1000",
},
},
screens: {
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
colors: {
white: "#fff",
gray: "#C2C2C2",
red: "#E63946",
"blue-10": "#CDEAEB",
"blue-20": "#F1FAEE",
"blue-50": "#A8DADC",
"blue-90": "#457B9D",
blue: "#1D3557",
green: "#37E69D",
orange: "#E69D37",
},
keyframes: {
daisyPop: {
'0%': { transform: 'scale(0.95)' },
'40%': { transform: 'scale(1.02)' },
'100%': { transform: 'scale(1)' },
}
},
animation: {
daisyPop: 'daisyPop 0.25s ease-out',
},
},
daisyui: {
themes: [
{
theme: {
primary: "#457B9D",
secondary: "#F000B8",
accent: "#37CDBE",
neutral: "#3D4451",
"base-100": "#FFFFFF",
info: "#3ABFF8",
success: "#36D399",
warning: "#FBBD23",
error: "#F87272",
},
},
],
},
plugins: [require("daisyui")],
};