forked from YBE-7/MiniProject_FE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (52 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
53 lines (52 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
const withMT = require('@material-tailwind/react/utils/withMT');
module.exports = withMT({
content: [
'./src/**/*.{js,jsx,ts,tsx}',
'./node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}',
'./node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: {
lg: '768px',
},
extend: {
fontFamily: {
body: ['Malgun Gothic', 'AppleSDGothicNeoL', 'Roboto', 'sans-serif'],
},
colors: {
primary: '#FF3478',
secondary: '#de2e5f',
text: '#1A1A1A',
navy: '#oo2d79',
blue: '#0152cc',
gray: '#ccc',
black: '#1A1A1A',
bgGray: '#F2F2F2',
white: '#FFF',
lightGray: '#F5F5F5',
textGray: '#919191',
secondaryTextGray: '#616161',
green: '#008161',
orange: '#E67000',
borderGray: '#e6e6e6',
hoverSecondary: '#B1244C',
soldOut: '#CCCCCC',
bgOrange: '#FEF8F3',
red: '#DC0328',
transparentGray: '#0000004D',
hoverBg: '#f2f6fc',
},
fontSize: {
title: '18px',
content: '14px',
md: '13px',
sm: '12px',
xs: '11px',
xxsm: '10px',
lg: '20px',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
});