-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
65 lines (64 loc) · 1.65 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"custom-gradient":
"linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%)",
},
screens: {
mobile: "376px",
tablet: "745px",
desktop: "1920px",
},
fontFamily: {
pretendard: ["Pretendard"],
},
fontSize: {
xs: ["12px", "16px"],
sm: ["14px", "20px"],
base: ["16px", "24px"],
lg: ["18px", "28px"],
xl: ["20px", "28px"],
"2xl": ["24px", "32px"],
"3xl": ["30px", "36px"],
},
colors: {
primary: "#3B82F6", // blue-500
"bland-blue": "#3182F6",
error: "#B91C1C", // red
basic: "#1E293B", // slate-800
"modal-background": "rgba(0, 0, 0, 0.50)",
"popup-background": "rgba(0, 0, 0, 0.50)",
},
borderRadius: {
button: "8px",
sm: "12px",
basic: "16px",
md: "32px",
},
},
maxWidth: {
"1200": "75rem",
},
boxShadow: {
sm: "0px 1px 2px 0px rgba(0, 0, 0, 0.05)",
lg: "0px 4px 6px -2px rgba(0, 0, 0, 0.05)",
xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
"2xl": "0px 25px 50px -12px rgba(0, 0, 0, 0.25)",
},
gridTemplateRows: {
cards: "250px 1fr",
},
transitionProperty: {
"max-width": "max-width",
},
},
plugins: [require("tailwindcss-animate")],
}
export default config