-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
85 lines (84 loc) · 1.26 KB
/
tailwind.config.js
File metadata and controls
85 lines (84 loc) · 1.26 KB
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
module.exports = {
content: ['./src/**/*.{html,js,ts,jsx,tsx,vue}'],
theme: {
fontSize: {
xs: [
'12px',
{
lineHeight: '22px',
fontWeight: '500',
},
],
sm: [
'14px',
{
lineHeight: '22px',
fontWeight: '500',
},
],
base: [
'16px',
{
lineHeight: '24px',
fontWeight: '500px',
},
],
lg: [
'22px',
{
lineHeight: '34px',
fontWeight: '500',
},
],
},
extend: {
fontFamily: {
sans: ['Pretendard', 'sans-serif'],
},
fontSize: {
xsB: [
'12px',
{
lineHeight: '22px',
fontWeight: '700',
},
],
smB: [
'14px',
{
lineHeight: '22px',
fontWeight: '700',
},
],
baseB: [
'16px',
{
lineHeight: '24px',
fontWeight: '700',
},
],
lgB: [
'22px',
{
lineHeight: '34px',
fontWeight: '700',
},
],
},
colors: {
primary: '#031F34',
pointGreen: '#158469',
pressGreen: '#0E5846',
disabledGray: '#E4E4E4',
moonYellow: '#FFFDC3',
hoverWhite: '#F2F2F2',
pressWhite: '#E6E6E6',
black: '#1D1D1D',
bodyBlack: '#555555',
disabledTextGray: '#BEBEBE',
borderGray: '#C6C6C6',
},
},
},
plugins: [],
};