-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (60 loc) · 1.27 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
66
67
68
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./*.{html,jsx}",
"./src/*.{html,jsx}",
"./src/**/*.{html,jsx}",
"./src/**/**/*.{html,jsx}",
"./src/**/**/**/*.{html,jsx}",
],
theme: {
screens: {
sm: "600px",
md: "900px",
lg: "1080px",
xl: "1200px",
},
extend: {
boxShadow: {
boxshadow: "0px 60px 10px 0px rgba(102, 104, 109, 0.17)",
},
colors: {
main: "#22d3ee",
yellow: "#ffea00",
},
keyframes: {
typing: {
"0%": {
width: "0",
},
},
blink: {
"50%": {
"border-color": "black",
},
},
rotate: {
"0%": {
transform: "rotate(0deg)",
},
"100%": {
transform: "rotate(-360deg)",
},
},
},
animation: {
typeanim: "typing 3s steps(50),blink 0.5s step-end 5 alternate",
},
backgroundImage: {
pixels: "url('/button.svg')",
},
fontFamily: {
nunito: ["Nunito", "sans-serif"],
rubik: ["Rubik", "sans-serif"],
lato: ["Lato", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
},
},
},
plugins: [],
}