-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.18 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
"red-item": "#FF445D",
"yellow-item": "#DCAE64",
"pink-item": "#DF5DEE",
"purple-item": "#A41AFF",
"blue-item": "#4482FF",
"green-font": "#46B858",
},
fontFamily: {
inter: ["Inter", "sans-serif"],
"rounded-mplus": ['"M PLUS Rounded 1c"', "sans-serif"],
},
animation: {
"slide-up": "slide-up 0.3s ease-out",
"opacity-up": "opacity-up 0.3s ease-out",
"opacity-down": "opacity-down 0.3s ease-out",
},
keyframes: {
"slide-up": {
"0%": { transform: "translateY(30px)" },
"100%": { transform: "translateY(0)" },
},
"opacity-up": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
"opacity-down": {
"0%": { opacity: "1" },
"100%": { opacity: "0" },
},
},
},
},
safelist: [
"border-b-red-item",
"border-b-purple-item",
"border-b-pink-item",
"border-b-yellow-item",
"border-b-blue-item",
"border-blue-item",
"border-purple-item",
"border-red-item",
"border-pink-item",
"border-yellow-item",
],
plugins: [],
};