-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1.07 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
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable import/no-extraneous-dependencies */
/** @type {import('tailwindcss').Config} */
const withMT = require('@material-tailwind/react/utils/withMT');
const colors = require('tailwindcss/colors');
module.exports = withMT({
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
kakaoContainer: '#FEE500',
kakaoSymbol: '#000000',
kakaoLabel: '#000000D9',
error: colors.red[500],
},
fontFamily: {
sans: ['NanumSquare', 'sans-serif'],
},
keyframes: {
arrow: {
'0%': {
transform: 'translateX(0)',
animationTimingFunction: 'linear',
},
'50%': {
transform: 'translateX(25%)',
animationTimingFunction: 'linear',
},
'100%': {
transform: 'translateX(0)',
animationTimingFunction: 'linear',
},
},
},
animation: {
arrowBounce: 'arrow .3s',
},
},
},
plugins: [],
});