-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
52 lines (52 loc) · 1.16 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
48
49
50
51
52
module.exports = {
content: ['./pages/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}', './container/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
r1: '#FF8E00',
r2: '#FE75B9',
r3: '#FFD3DD',
r4: '#DD5D18',
r5: '#FFD39C',
a1: '#F42500',
a2: '#717D96',
g0: '#FFFFFF',
g1: '#FAFAFA',
g2: '#EEEEEE',
g3: '#E0E0E0',
g4: '#BDBDBD',
g5: '#757575',
g6: '#424242',
g7: '#212121',
n700: '#696F8C',
},
fontFamily: {
poppins: ['Poppins', 'sans-serif'],
pretendard: ['Pretendard', 'sans-serif'],
},
maxWidth: {
default: '335px',
max: '440px',
},
spacing: {
default: '335px',
footerImg: '93.75px',
},
width: {
default: '335px',
medium: '125px',
small: '77px',
footerImg: '20px',
footerContainer: '93.75px',
loginImg: '375px',
max: '440px',
},
height: {
footerImg: '18px',
footerContainer: '66px',
loginImg: '440px',
},
},
},
plugins: [],
};