-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
69 lines (69 loc) · 1.72 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
/** @type {import('tailwindcss').Config} */
module.exports = {
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: {
fontFamily: {
pre: ['pretendard'],
},
screens: {
sm: '375px',
},
extend: {
colors: {
homeMain: '#FFF3C5',
main: '#FFCC00',
subBtn: '#004EAF',
bgMain: '#FFFAEB',
alarmRed: '#D9340F',
alarmGreen: '#0FA254',
black: '#222222',
gray: '#bdbdbd',
descGray: '#828282',
borderGray: '#E5E5E5',
lightGray: '#FAFAFA',
white: '#FFFFFF',
borderWhite: '#F5F5F5',
red: '#D9340F',
blue: '#2D05CD',
dateBlue: '#004EAF',
fontBlack: '#222222',
gray50: '#E0E0E0',
yaLogo: '#FF3478',
gradientStart: '#FFE266',
green: '#0FA254',
skel: "#ccc"
},
fontSize: {
headline1: '24px',
headline2: '20px',
headline3: '18px',
body: '16px',
lg: '14px',
m: '12px',
sm: '10px',
},
backgroundImage: {
checked: "url('pages/signUp/component/checked.svg')",
unchecked: "url('pages/signUp/component/unchecked.svg')",
selected: "url('pages/mypage/component/region/plusRegion.svg')",
unselected: "url('pages/mypage/component/region/removeRegion.svg')",
typePassword: "url('pages/mypage/component/edit/typePassword.svg')",
typeText: "url('pages/mypage/component/edit/typeText.svg')",
},
keyframes: {
slideUp: {
'0%': { transform: 'translateY(100%)' },
'100%': { transform: 'translateY(0)' },
},
},
animation: {
'slide-up': 'slideUp 0.5s ease-out forwards',
},
},
},
plugins: [require('tailwind-scrollbar-hide')],
};