forked from hridoy-islam/devhiveclient
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 771 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (35 loc) · 771 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
colors: {
primary: "#5c6ac4",
secondary: "#f43f5e",
},
extend: {
animation: {
slide: "slide 5s linear infinite",
},
keyframes: {
slide: {
"0%, 100%": {
"margin-top": "-270px",
},
"5%, 33%": {
"margin-top": "-180px",
},
"38%, 66%": {
"margin-top": "-90px",
},
"71%, 99.99%": {
"margin-top": "0px",
},
},
},
fontFamily: {
playfair: ["Playfair", "sans-serif"],
},
},
},
plugins: [require("daisyui"), require("@tailwindcss/forms")],
};