-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
37 lines (37 loc) · 928 Bytes
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
keyframes: {
'hidden-visible': {
'0%, 100%': { opacity: 1 },
'50%': { opacity: 0 },
},
resizeToHidden: {
from: {
transform: 'scale(1.0)',
},
to: {
transform: 'scale(0)',
},
},
},
animation: {
'hidden-visible': 'hidden-visible 1s ease-in-out infinite',
resizeToHidden: 'resizeToHidden 9s forwards',
},
fontFamily: {
arges: ['Arges', 'sans-serif'],
mori: ['Mori', 'sans-serif'],
blackstone: ['BlackStone', 'sans-serif'],
editorial: ['Editorial', 'sans-serif'],
},
colors: {
'olive-100': '#bfea88',
'olive-900': '#192928',
},
},
},
plugins: [],
};