-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (42 loc) · 1.06 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
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
plugins: [require("@tailwindcss/forms")],
theme: {
colors: {
transparent: colors.transparent,
white: colors.white,
gray: colors.stone,
tomato: "#e56353",
coral: "#ffaaa0",
peach: "#ffcdc7",
"dark-tomato": "#cc5949",
yellow: "#fcd462",
"light-yellow": "#ffe597",
"dark-yellow": "#f5b505",
green: "#44c4a1",
success: "#1A7D36",
},
fontFamily: {
title: "PyeongChangPeace-Bold",
},
transitionProperty: {
box: "margin, padding, border, height",
},
animation: {
gradient: "gradient 1s linear reverse infinite",
},
keyframes: {
gradient: {
"0%": { backgroundPosition: "0%" },
"25%": { backgroundPosition: "50%" },
"50%": { backgroundPosition: "100%" },
"75%": { backgroundPosition: "150%" },
"100%": { backgroundPosition: "200%" },
},
},
},
};