-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
84 lines (84 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
content: ['./src/components/**/*.{js,ts,jsx,tsx}', './src/pages/**/*.{js,ts,jsx,tsx}'],
// important: '#root',
darkMode: false, //? or 'media' or 'class'
theme: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1792px',
'4xl': '2048px',
'5xl': '2300px',
},
maxWidth: {
'1/2': '50%',
'1/3': '33%',
'2/3': '66%',
'3/4': '75%',
},
extend: {
colors: {
primary: '#FF7F00',
secondary: { 700: '#777777', 600: '#b9b9b9', 500: '#DDDDDD', 300: '#F5F5F5' },
},
fontFamily: {
'noto-sans-kr': ['"Noto Sans KR"', 'sans-serif'],
'noto-sans': ['"Noto Sans"', 'sans-serif'],
},
zIndex: {
1400: '1400',
},
},
},
variants: {
extend: {},
},
corePlugins: {
preflight: false,
},
plugins: [
({ addUtilities }) => {
addUtilities({
'.font-default': {
fontFamily: ['noto-sans-kr', 'noto-sans'],
},
'.font-Logo': {
'@apply font-default': {},
fontSize: '3.125rem',
fontWeight: '800',
fontStyle: 'italic',
},
'.font-h1': {
'@apply font-default': {},
fontSize: '1.875rem',
fontWeight: '600',
},
'.font-h2': {
'@apply font-default': {},
fontSize: '1.5rem',
fontWeight: '600',
},
'.font-body1': {
'@apply font-default': {},
fontSize: '1.125rem',
fontWeight: ' 500',
},
'.font-body1-bold': {
'@apply font-default': {},
fontSize: '1.125rem',
fontWeight: '600',
},
'.font-placeholder': {
'@apply font-default': {},
fontSize: '1rem',
fontWeight: '100',
},
});
},
],
};