-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
boxShadow: {
inn: "0 0 8px 8px white inset",
},
backgroundImage: {
"gradient-conic": "conic-gradient(var(--tw-gradient-stops))",
},
animation: {
disco: "disco 3.5s linear infinite",
rotate: "rotate 5s linear infinite",
},
fontFamily: {
poppins: ["var(--font-poppins)"],
},
keyframes: {
disco: {
"0%": { transform: "translateY(-50%) rotate(0deg)" },
"100%": { transform: "translateY(-50%) rotate(360deg)" },
},
rotate: {
"0%": {
"--rotate": "0deg",
},
"100%": {
"--rotate": "360deg",
},
},
},
},
},
plugins: [require("daisyui")],
daisyui: {
styled: true,
themes: [
{
scroll: {
primary: "#1B262D",
secondary: "#1B262D",
accent: "#E6E6FA",
neutral: "#1B262D",
"base-100": "#FFFFFF",
info: "#2679DF",
success: "#26B58A",
warning: "#EBB728",
error: "#EA5048",
},
},
],
},
};