-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 992 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
37
38
39
40
41
42
43
44
45
module.exports = {
content: ["src/client/ui/**/*.{ts,tsx,html}"],
theme: {
extend: {
colors: {
bg: {
// DEFAULT: '#04004a'
},
territory: {
DEFAULT: '#30E8E4' // 3055E8
},
},
fontFamily: {
brand: ['Aldrich', 'sans-serif'],
},
dropShadow: {
'glow-white': '0px 0px 12px rgba(255, 255, 255, 0.6)',
},
animation: {
'tilt-in': 'tilt-in 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both;'
},
keyframes: {
'fade-in': {
from: {
opacity: 0
},
to: {
opacity: 1
}
},
'tilt-in': {
from: {
transform: 'rotateY(30deg) translateY(-300px) skewY(-30deg)',
opacity: 0
},
to: {
transform: 'rotateY(0deg) translateY(0px) skewY(0deg)',
opacity: 1
}
}
}
},
},
plugins: [],
}