-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
76 lines (75 loc) · 2.05 KB
/
tailwind.config.js
File metadata and controls
76 lines (75 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/** @type {import('tailwindcss').Config} */
import flowbite from 'flowbite-react/tailwind';
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx,vue}',
'./public/index.html',
'node_modules/flowbite-react/lib/esm/**/*.js',
flowbite.content(),
],
theme: {
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
'red-1': '#EB0000',
'yellow-1': '#FFD600',
'black-1': '#000000',
'black-2': 'rgba(126, 126, 126, 0.9)', // 지도 편의시설 드롭다운
'black-3': '#5B5B5B',
'grey-1': '#828282',
'grey-2': '#BABABA',
'grey-3': '#D9D9D9',
'grey-4': '#E6E6E6',
'grey-5': '#F4F4F4',
'grey-6': '#F7F7F7',
'grey-7': 'rgba(240, 240, 240, 0.9)', // 지도 버튼 미클릭
'grey-8': 'rgba(217, 217, 217, 0.9)', // 지도 버튼 클릭
'white-1': '#FFFFFF',
'white-2': 'rgba(255, 255, 255, 0.5)',
'blue-1': '#004CC7',
'blue-2': '#487FD7',
'blue-3': '#91AFFF',
'blue-4': '#DAE5F7',
'dark-blue-1': '#0042AE',
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
Cafe24Shiningstar: ['Cafe24Shiningstar'],
'ClimateCrisisKR-1979': ['ClimateCrisisKR-1979'],
'CWDangamAsac-Bold': ['CWDangamAsac-Bold'],
NanumSquareRound: ['NanumSquareRound'],
GyeonggiTitleM: ['GyeonggiTitleM'],
'Pretendard-Bold': ['Pretendard-Bold'],
},
extend: {
spacing: {
128: '32rem',
144: '36rem',
customWidthPercent: '85%',
customMargin: '1rem',
},
borderRadius: {
'4xl': '2rem',
},
},
},
plugins: [
flowbite.content(),
function ({ addUtilities }) {
addUtilities({
'.scroll-hidden': {
'scrollbar-width': 'none' /* Firefox */,
'-ms-overflow-style': 'none' /* IE and Edge */,
},
'.scroll-hidden::-webkit-scrollbar': {
display: 'none' /* Chrome, Safari, and Opera */,
},
});
},
],
};