-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
53 lines (52 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
53
import type { Config } from 'tailwindcss'
import plugin from 'tailwindcss/plugin'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
keyframes: {
flip: {
'50%': { transform: 'rotateX(90deg)' },
'0%, 100%': { transform: 'rotateX(0)' },
},
pop: {
'20%': { transform: 'scale(1.08)' },
'0%, 100%': { transform: 'scale(1)' },
},
},
animation: {
flip: 'flip 500ms ease-in-out',
pop: 'pop 130ms ease-in-out',
},
borderColor: {
'zinc-light': 'rgb(86 87 88);',
'zinc-dark': 'rgb(58 58 60);',
},
screens: {
sm: '500px',
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'animate-delay': value => ({
animationDelay: value,
}),
},
{ values: theme('transitionDelay') }
)
}),
],
}
export default config