-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
65 lines (63 loc) · 1.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}', // Note the addition of the `app` directory.
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
plugins: [require('@tailwindcss/forms')],
theme: {
container: {
center: true,
padding: 20,
screens: {
sm: '640px',
md: '768px' /** 모바일 기기의 가로 최대 사이즈 */,
lg: '1024px',
xl: '1280px',
'2xl': '1280px',
},
},
extend: {
fontFamily: {
noto: ['NanumSquareRoundOTF', 'sans-serif'],
sans: ['NanumSquareRoundOTF', 'sans-serif'],
},
colors: {
neutral: {
500: '#A8A8A8',
600: '#D2D2D2',
700: '#939393',
800: '#555555',
850: '#333333',
900: '#111111',
},
gray: {
100: '#F6F6F6',
250: '#D9D9D9',
300: '#CCCCCC',
330: '#B4B4B4',
600: '#888888',
700: '#ADB2BB',
800: '#333333',
900: '#212121',
},
main: {
900: '#383B40',
},
blue: '#324478',
orange: '#ED7743',
},
},
fontSize: {
xs: '1rem',
sm: '1.2rem',
base: '1.4rem',
lg: '1.6rem',
xl: '1.8rem',
},
},
}