-
Notifications
You must be signed in to change notification settings - Fork 58
/
tailwind.config.ts
43 lines (41 loc) · 1.04 KB
/
tailwind.config.ts
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
import { Config } from 'tailwindcss'
const tailwindConfig = {
content: [],
theme: {
extend: {
colors: {
faceit: '#ff5500',
},
fontFamily: {
sans: [
'"Inter", sans-serif',
{ fontFeatureSettings: '"liga" 1, "calt" 1' },
],
},
fontSize: {
'2xs': ['0.625rem', '0.875rem'],
},
keyframes: {
skinOfTheMatchFloat: {
'0%': {
transform: 'translate(0)',
filter:
'saturate(1.25) brightness(1.25) drop-shadow(0px 4px 3px black)',
},
'50%': {
transform: 'translate(0, -4px)',
filter:
'saturate(1.25) brightness(1.25) drop-shadow(0px 8px 7px black)',
},
'100%': {
transform: 'translate(0)',
filter:
'saturate(1.25) brightness(1.25) drop-shadow(0px 4px 3px black)',
},
},
},
},
},
plugins: [require('tailwindcss-animate')],
} satisfies Config
export default tailwindConfig