-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
65 lines (65 loc) · 1.95 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
65
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
container: {
screens: {
xl: "1240px",
},
center: true,
},
extend: {
fontFamily: {
neuton: ["neuton", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
colors: {
orange: {
1: "#FCC997",
2: "#FF5927",
},
navy: "#0F0742",
gray: {
1: "#E0E0E0",
2: "#989898",
3: "#BDBDBD",
},
},
keyframes: {
spinLeft: {
from: { transform: "rotate(360deg)" },
to: { transform: "rotate(0deg)" },
},
loading: {
"50%": {
width: "60px",
height: "60px",
transform: "rotate(180deg)",
},
"100%": {
transform: "rotate(360deg)",
},
},
arrowColor1: {
"0%, 100%": { stroke: "#FCC997" },
"65%": { stroke: "#FF5927" },
},
arrowColor2: {
"0%, 100%": { stroke: "#FF5927" },
"65%": { stroke: "#FCC997" },
},
},
animation: {
spinLeft: "spinLeft 4.5s linear infinite",
loading: "loading 1.5s infinite cubic-bezier(0.3, 1, 0, 1)",
arrowColor1: "arrowColor1 2s linear infinite",
arrowColor2: "arrowColor2 2s linear infinite",
},
},
},
plugins: [],
};