-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
45 lines (45 loc) · 1.12 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
43
44
45
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx,md}',
'./pages/**/*.{js,ts,jsx,tsx,mdx,md}',
'./components/**/*.{js,ts,jsx,tsx,mdx,md}',
],
theme: {
extend: {
colors: {
primary: '#DB0AAE',
secondary: '#20DBFE',
accent: '#704d99',
},
keyframes: {
'slow-glow': {
'0%': { opacity: 0 },
'50%': { opacity: 0.8 },
'100%': { opacity: 0 },
},
'waving-hand': {
'0%, 100%': {
transform: 'rotate(0deg)',
},
'50%': {
transform: 'rotate(20deg)',
},
},
background: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
},
animation: {
'slow-glow': 'slow-glow 3s infinite',
'waving-hand': 'waving-hand 0.5s ease-in-out infinite alternate',
background: 'background ease infinite',
},
},
},
plugins: [
require('tailwindcss-animated'),
require('@tailwindcss/typography'),
],
};