forked from revezone/revezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (34 loc) · 869 Bytes
/
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
/** @type {import('tailwindcss').Config} */
// tailwind.config.js
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/renderer/index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' }
},
breath: {
'0%, 100%': {
// opacity: '1',
transform: 'scale(1)'
},
'50%': {
// opacity: '.7',
transform: 'scale(1.1)'
}
}
},
animation: {
wiggle: 'wiggle 2s ease-in-out infinite',
breath: 'breath 3s ease-in-out infinite'
}
}
},
plugins: []
};