-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (39 loc) · 1.18 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [],
theme: {
extend: {
borderColor: ['responsive', 'hover', 'focus', 'active'],
colors: {
'remak-blue': '#1F8CE6',
'remak-background-gray': '#F4F6F8',
'topbar-background': '#FEFEFE',
},
fontFamily: {
sans: [
'"Pretendard Variable"',
'"Pretendard"',
...defaultTheme.fontFamily.sans,
],
},
animation: {
'infinite-flow': 'infinite-flow 40s linear infinite',
shake: 'shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both',
},
keyframes: {
'infinite-flow': {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(-100%)' },
},
shake: {
'10%, 90%': { transform: 'translate3d(-1px, 0, 0)' },
'20%, 80%': { transform: 'translate3d(2px, 0, 0)' },
'30%, 50%, 70%': { transform: 'translate3d(-4px, 0, 0)' },
'40%, 60%': { transform: 'translate3d(4px, 0, 0)' },
},
},
},
},
plugins: [require('@tailwindcss/typography')],
};