-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
29 lines (29 loc) · 1014 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
29 lines (29 loc) · 1014 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}', './src/layouts/**/*/.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
NotoSerifKR: ['Noto Serif KR', 'serif'],
lexend: ['lexend', 'sans-serif'],
evomedium: ['EVOMEDIUM', 'sans-serif'],
evoregular: ['EVOREGULAR', 'sans-serif'],
},
colors: {
ourBlack: '#1D1D1D',
outWhite: '#F8F8F8',
},
keyframes: {
topCross: {
'0%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(-135deg)' },
},
bottomCross: {
'0%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(135deg)' },
},
},
},
},
plugins: [],
};