-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
56 lines (54 loc) · 1.29 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}'
],
darkMode: 'class', // class 전략을 사용하여 수동으로 다크모드 전환
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))'
}
},
fontFamily: {
Pretendard: ['Pretendard']
},
colors: {
transparent: colors.transparent,
white: colors.white,
red: colors.red,
blue: colors.blue,
gray: colors.gray,
main: '#75C2F6',
til: '#A2C579',
tag: '#FF8080', // 태그 기본 색상
category: '#FDC725',
web: '#F99417',
fe: '#3D30A2',
tdd: '#0C356A',
darkblack: '#121214',
error: '#EE4400',
flutter: '#53C0F1'
}
},
safelist: [
'bg-main',
'bg-til',
'bg-tag',
'bg-category',
'bg-web',
'bg-fe',
'bg-tdd',
'bg-error',
'bg-flutter'
],
variants: {
fill: ['hover', 'focus']
},
plugins: [require('@tailwindcss/typography')]
};
export default config;