-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
58 lines (58 loc) · 1.71 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./src/**/*.{js,ts,jsx,tsx,mdx,md}'],
theme: {
extend: {
fontFamily: {
eng: ['var(--poppins)'],
kor: ['var(--pretendard)'],
},
fontSize: {
'8xl': '6rem',
'6xl': '3.75rem',
'5xl': '3rem',
'3xl': '1.875rem',
'2xl': '1.5rem',
xl: '1.25rem',
xxs: '0.625rem',
'3xs': '0.5rem',
'5xs': '0.1rem',
},
width: {
88: '23rem',
100: '28rem',
},
colors: {
theme: {
background: '#18181B',
font: '#D9D9D9',
},
primary: {
yellow: '#FFE247',
hotpink: '#FF3C76',
teal: '#00ECC1',
blue: '#1753F1',
purple: '#946AFE',
darkgray: '#18181B',
whitegray: '#D9D9D9',
logo: '#656C73',
},
},
keyframes: {
rise: {
'0%': { transform: 'translateY(0.5rem)', opacity: '0.75' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
},
animation: {
rise: 'rise 1s',
},
blur: {
'4xl': '5rem',
'5xl': '6rem',
},
},
},
plugins: [require('tailwindcss-3d'), require('tailwind-scrollbar-hide')],
}