-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
120 lines (108 loc) · 4.2 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* eslint-disable */
import type { Config } from 'tailwindcss';
const pxToRem = require('tailwindcss-preset-px-to-rem');
export default {
presets: [pxToRem],
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
blue: {
50: "#EFF6FF",
100: "#DBEAFE",
200: "#BFDBFE",
300: "#93C5FD",
400: "#60A5FA",
500: "#3B82F6",
600: "#2563EB",
700: "#1D4ED8",
800: "#1E40AF",
900: "#1E3A8A",
950: "#172554"
},
slate: {
50: "#F8FAFC",
100: "#F1F5F9",
200: "#E2E8F0",
300: "#CBD5E1",
400: "#94A3B8",
500: "#64748B",
600: "#475569",
700: "#334155",
800: "#1E293B",
900: "#0F172A",
950: "#020617"
},
primary: {
100: "#536894",
200: "#374D7A"
},
sub: {
orange: '#FFAB76',
purple: '#B18AE0',
blue: '#A8D8F0',
yellow: '#FFEC8B',
pink: '#F49696',
},
'custom-white': {
100: '#F6F6F6',
200: '#E9E9E9',
300: '#C4C4C4',
},
'custom-gray': {
100: '#848484',
200: '#535353',
300: '#090909',
},
error: '#D72638'
},
fontFamily: {
pretendard: ['var(--font-pretendard)'],
},
fontSize: {
"3xl-bold": ["30px", { lineHeight: "36px", fontWeight: "700" }],
"3xl-semibold": ["30px", { lineHeight: "36px", fontWeight: "600" }],
"3xl-medium": ["30px", { lineHeight: "36px", fontWeight: "500" }],
"3xl-normal": ["30px", { lineHeight: "36px", fontWeight: "400" }],
"3xl-light": ["30px", { lineHeight: "36px", fontWeight: "300" }],
"2xl-bold": ["22px", { lineHeight: "32px", fontWeight: "700" }],
"2xl-semibold": ["22px", { lineHeight: "32px", fontWeight: "600" }],
"2xl-medium": ["22px", { lineHeight: "32px", fontWeight: "500" }],
"2xl-normal": ["22px", { lineHeight: "32px", fontWeight: "400" }],
"2xl-light": ["22px", { lineHeight: "32px", fontWeight: "300" }],
"xl-bold": ["20px", { lineHeight: "28px", fontWeight: "700" }],
"xl-semibold": ["20px", { lineHeight: "28px", fontWeight: "600" }],
"xl-medium": ["20px", { lineHeight: "28px", fontWeight: "500" }],
"xl-normal": ["20px", { lineHeight: "28px", fontWeight: "400" }],
"xl-light": ["20px", { lineHeight: "28px", fontWeight: "300" }],
"lg-bold": ["18px", { lineHeight: "28px", fontWeight: "700" }],
"lg-semibold": ["18px", { lineHeight: "28px", fontWeight: "600" }],
"lg-medium": ["18px", { lineHeight: "28px", fontWeight: "500" }],
"lg-normal": ["18px", { lineHeight: "28px", fontWeight: "400" }],
"lg-light": ["18px", { lineHeight: "28px", fontWeight: "300" }],
"base-bold": ["16px", { lineHeight: "24px", fontWeight: "700" }],
"base-semibold": ["16px", { lineHeight: "24px", fontWeight: "600" }],
"base-medium": ["16px", { lineHeight: "24px", fontWeight: "500" }],
"base-normal": ["16px", { lineHeight: "24px", fontWeight: "400" }],
"base-light": ["16px", { lineHeight: "24px", fontWeight: "300" }],
"sm-bold": ["14px", { lineHeight: "20px", fontWeight: "700" }],
"sm-semibold": ["14px", { lineHeight: "20px", fontWeight: "600" }],
"sm-medium": ["14px", { lineHeight: "20px", fontWeight: "500" }],
"sm-normal": ["14px", { lineHeight: "20px", fontWeight: "400" }],
"sm-light": ["14px", { lineHeight: "20px", fontWeight: "300" }],
"xs-bold": ["12px", { lineHeight: "16px", fontWeight: "700" }],
"xs-semibold": ["12px", { lineHeight: "16px", fontWeight: "600" }],
"xs-medium": ["12px", { lineHeight: "16px", fontWeight: "500" }],
"xs-normal": ["12px", { lineHeight: "16px", fontWeight: "400" }],
"xs-light": ["12px", { lineHeight: "16px", fontWeight: "300" }],
},
},
},
plugins: [
require('tailwind-scrollbar-hide')
],
} satisfies Config;