-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 847 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (38 loc) · 847 Bytes
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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
container: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1300px",
},
},
extend: {
colors: {
back: "#f2f2f2",
content: "#1D1D1F",
gray01: "#6E6E73",
gray02: "#d2d2d7a3",
gray03: "#86868b",
white01: "#FAFAFC",
white02: "#E8E8ED66",
blue01: "#06C",
blue_active: "#006edb",
blue02: "#0071E3",
brown01: "#B64400",
},
keyframes: {
slideUp: {
'10%': { transform: 'translateY(100%)' },
'100%': { transform: 'translateY(0)' },
},
},
animation: {
slideUp: 'slideUp 0.7s ease-out',
},
},
},
plugins: [require("tailwind-scrollbar-hide")],
};