-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
85 lines (83 loc) Β· 1.64 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
85
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./src/views/**/*.vue',
'./public/index.html',
'./node_modules/@material-tailwind/vue/components/**/*.{vue,js,ts,jsx,tsx}',
'./node_modules/@material-tailwind/vue/theme/components/**/*.{vue,js,ts,jsx,tsx}'
],
safelist: [
// λμ ν΄λμ€
'text-[#17A1FA]',
'text-[#B3B3B3]',
'bg-[#FF7F00]',
'text-white',
'invisible',
// μ μ ν΄λμ€
'bg-[#FFF9F2]',
'bg-[#FAE8DA]',
'bg-[#FFD9BB]',
'bg-[#FF7F00]',
'bg-white',
'text-gray-800',
'text-gray-700',
'text-gray-600',
'text-gray-500',
'text-black',
'text-white',
'text-base',
'text-lg',
'text-xl',
'text-2xl',
'min-h-screen',
'flex',
'items-center',
'justify-center',
'relative',
'absolute',
'fixed',
'rounded-lg',
'rounded-t-3xl',
'w-[395px]',
'min-w-[340px]',
'max-w-[290px]',
'h-8',
'grid',
'grid-cols-7',
'gap-4',
'mb-1',
'mb-2',
'mb-4',
'pb-4',
'px-6',
'pt-20',
'pb-24',
'p-4',
'no-underline',
'font-bold',
'font-medium',
'rounded',
'transition-colors',
'duration-300',
'hover:bg-[#f1cdb1]',
'inner-shadow'
],
theme: {
extend: {
fontFamily: {
pretendard: ['Pretendard', 'sans-serif'],
uhbeesehyun: ['UhBeeSe_hyun', 'sans-serif'],
nanum: ['NanumSquareRound', 'sans-serif']
},
colors: {
customBg: '#FFF9F2'
},
fontSize: {
xxs: '0.625rem'
}
}
},
plugins: []
}