-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (39 loc) · 929 Bytes
/
tailwind.config.js
File metadata and controls
40 lines (39 loc) · 929 Bytes
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
// /** @type {import('tailwindcss').Config} */
// export default {
// content: [],
// theme: {
// extend: {},
// },
// plugins: [],
// }
/** @type {import('tailwindcss').Config} */
module.exports = {
// 테일윈드 적용 범위 설정
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'fc': '#E4E4E5',
},
fontFamily: {
'sans': ['Pretendard Variable', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
'pretendard': ['Pretendard Variable', 'sans-serif'],
},
fontWeight: {
thin: '100',
extralight: '200',
light: '300',
normal: '400',
medium: '500',
semibold: '600',
bold: '700',
extrabold: '800',
black: '900',
},
},
},
plugins: [],
}