-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (44 loc) · 1.16 KB
/
tailwind.config.js
File metadata and controls
45 lines (44 loc) · 1.16 KB
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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: "rgb(1, 104, 1)",
secondary: "#0F256E",
tabs: "#F8F9FB",
AnimateModal: "#E3E3E3",
textBlue: " #84a7c1",
textColor: " #646464",
},
transitionProperty: {
width: "width",
},
keyframes: {
roll: {
"0%, 10%, 20%, 30%, 40%, 60%, 70%, 80%, 90%, 100%": {
transform: "scale(1)",
},
"50%": { transform: "scaleY(0)" },
},
movement: {
"0%, 20%, 40%, 60%, 80%, 100%": { transform: "translateX(0rem)" },
"10%": { transform: "translateX(2rem)" },
"30%": { transform: "translateX(-2rem)" },
"50%": { transform: "translateY(1rem)" },
"70%": { transform: "translateY(-1rem)" },
},
},
animation: {
roll: "roll 3s infinite ",
movement: "movement 5s infinite",
},
},
},
variants: {
extend: {
animation: ["hover", "group-hover"],
},
},
plugins: [require("daisyui")],
};