-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.41 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,jsx,ts,tsx}",
"./src/components/**/*.{js,jsx,ts,tsx}",
],
theme: {
screens: {
"2xl": { max: "1300px" },
xl: { max: "1280px" },
lg: { max: "1024px" },
md: { max: "768px" },
sm: { max: "640px" },
xs: { max: "450px" },
},
extend: {
colors: {
hover: "#bbf7d0",
blue: "#6366f1",
pink: "#f43f5e",
green: "#84cc16",
},
boxShadow: {
glow: "0 0 7px white",
hover: "0 0 7px hover",
},
fontFamily: {
"press-start": [
"'Press Start 2P'",
"cursive",
"monospace",
"sans-serif",
],
},
keyframes: {
"cursor-blink": {
"0%": { opacity: "0" },
"49%": {
opacity: "0",
},
"50%": {
opacity: "1",
},
"100%": {
opacity: "1",
},
},
blur: {
"0%": { filter: "blur(0px)" },
"30%": { filter: "blur(0px)" },
"70%": { filter: "blur(1px)" },
"100%": {
filter: "blur(6px)",
},
},
},
animation: {
"cursor-blink": "cursor-blink 0.6s linear infinite alternate",
blur: "blur 1.5s linear infinite alternate",
},
},
},
plugins: [],
};