-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (57 loc) · 1.48 KB
/
tailwind.config.js
File metadata and controls
58 lines (57 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}"],
theme: {
fontFamily: {
primary: "Orbitron",
secondary: "Rajdhani",
tertiary: "Aldrich",
},
container: {
padding: {
DEFAULT: "15px",
},
},
screens: {
sm: "640px",
md: "768px",
lg: "960px",
xl: "1200px",
},
animation: {
"spin-slow": "spinslow 45s linear infinite",
spinslowant: "spinslowant 100s linear infinite",
upAndDown: "upAndDown 8s infinite",
upAndDown1: "upAndDownBall 4s infinite 2s",
},
keyframes: {
upAndDown: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-50px)" },
},
upAndDownBall: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-30px)" },
},
spinslow: {
"0%": { transform: "rotate(00deg)" },
"100%": { transform: "rotate(360deg)" },
},
spinslowant: {
"0%": { transform: "rotate(00deg)" },
"100%": { transform: "rotate(-360deg)" },
},
},
extend: {
colors: {
primary: "#0a0a0a",
accent: "#8734A4",
},
backgroundImage: {
site: "url('./assets/site-bg.png')",
about: "url('./assets/about.png')",
contact: "url('./assets/services.png')"
},
},
},
plugins: [require("tailwind-scrollbar"), require("flowbite/plugin")],
};