-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
99 lines (99 loc) · 2.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
transitionDuration: {
1500: "1500ms",
1000: "1000ms",
750: "750ms",
100: "100ms",
},
backgroundImage: {
"gradient-radial": "radial-gradient(black)",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
gridX: "linear-gradient(to right, black 1px, transparent 1px),",
},
animation: {
objectPosition: "bgposition 15s ease-in-out infinite alternate",
slowlyRotate: "spinBackground 90s linear infinite",
"gradient-x": "gradient-x 15s ease infinite",
spin: "spin 2s linear infinite",
pulsePing: "pulsePing 2s ease-out infinite",
},
backgroundSize: {
button: "100% 150%",
},
colors: {
spotify: {
50: "#f0fdf4",
100: "#dbfde6",
200: "#baf8cf",
300: "#84f1aa",
400: "#48e07d",
500: "#1db954",
600: "#14a547",
700: "#13823b",
800: "#156633",
900: "#13542c",
950: "#042f15",
},
apple: {
50: "#fff1f2",
100: "#ffe0e1",
200: "#ffc6c8",
300: "#ff9ea2",
400: "#ff676d",
500: "#fc3c44",
600: "#ea1821",
700: "#c51018",
800: "#a31117",
900: "#86161b",
950: "#490609",
},
},
boxShadow: {
"3xl": "inset 0 10px 20px -10px rgba(0, 0, 0, 0.3)",
},
keyframes: {
pulsePing: {
"0%": { scale: "100%", opacity: 0.7 },
"75%": { scale: "350%", opacity: 0 },
"100%": { opacity: 0 },
},
bgposition: {
"0%": { objectPosition: "0% 0%" },
"100%": { objectPosition: "0% 100%" },
},
spin: {
"0%": { rotate: "0deg" },
"100%": { rotate: "360deg" },
},
spinBackground: {
"0%": { rotate: "0deg", scale: "200%" },
"100%": { rotate: "360deg", scale: "200%" },
},
"gradient-x": {
"0%, 100%": {
"background-size": "200% 200%",
"background-position": "left center",
},
"50%": {
"background-size": "200% 200%",
"background-position": "right center",
},
},
},
},
},
plugins: [
require("prettier-plugin-tailwindcss"),
require("tailwindcss-animate"),
],
};