-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
46 lines (46 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
43
44
45
46
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
animation: {
'spin-slow': 'spin 3s linear infinite',
wiggle: 'wiggle 3s linear infinite',
'rainbow-text': 'colorRotate 1s linear infinite',
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' },
},
colorRotate: {
from: {
color: '#6666ff',
},
'10%': {
color: '#0099ff',
},
'50%': {
color: '#00ff00',
},
'75%': {
color: '#ff3399',
},
'100%': {
color: '#6666ff',
},
},
},
colors: {
'jerma-deep-blue': '#012846',
'jerma-pink': '#F4516F',
'jerma-light-blue': '#A5C5C8',
'jerma-bright-blue': '#4EC8BD',
},
screens: {
m: { raw: '(hover: hover)' },
},
},
},
plugins: [],
}