-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (59 loc) · 1.3 KB
/
tailwind.config.js
File metadata and controls
59 lines (59 loc) · 1.3 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Pretendard', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', 'sans-serif'],
},
colors: {
primary: {
DEFAULT: '#034EA2',
50: '#E6EDF6',
100: '#CCDBED',
500: '#034EA2',
600: '#023D82',
700: '#022C62',
},
danger: {
DEFAULT: '#EF4444',
500: '#EF4444',
},
gray: {
50: '#F9FAFB',
100: '#E6EDF6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#ADAEBC',
500: '#9CA3AF',
600: '#4B5563',
700: '#374151',
900: '#111827',
},
},
maxWidth: {
'content': '1440px',
},
spacing: {
'header': '64px',
},
},
},
plugins: [
function({ addUtilities }) {
addUtilities({
'.scrollbar-hide': {
/* Firefox */
'scrollbar-width': 'none',
/* Safari and Chrome */
'&::-webkit-scrollbar': {
display: 'none'
}
}
})
}
],
}