-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
83 lines (82 loc) · 2.43 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import type {Config} from 'tailwindcss';
import tailwindcssRadix from 'tailwindcss-radix';
import tailwindcssRadixColors from 'tailwindcss-radix-colors';
import tailwindForms from '@tailwindcss/forms';
import tailwindContainerQueries from '@tailwindcss/container-queries';
import defaultTheme from 'tailwindcss/defaultTheme';
import type {PluginAPI} from 'tailwindcss/types/config';
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
theme: {
screens: {
portrait: {raw: '(orientation: portrait)'},
xs: '475px',
...defaultTheme.screens,
},
extend: {
fontFamily: {
gothamLight: ['GothamRoundedLight', 'sans-serif'],
gothamBook: ['GothamRoundedBook', 'sans-serif'],
gothamMedium: ['GothamRoundedMedium', 'sans-serif'],
gothamBold: ['GothamRoundedBold', 'sans-serif'],
},
animation: {
scaleIn: 'scaleIn 200ms ease',
scaleOut: 'scaleOut 200ms ease',
fadeIn: 'fadeIn 200ms ease',
fadeOut: 'fadeOut 200ms ease',
enterFromLeft: 'enterFromLeft 250ms ease',
enterFromRight: 'enterFromRight 250ms ease',
exitToLeft: 'exitToLeft 250ms ease',
exitToRight: 'exitToRight 250ms ease',
},
keyframes: {
enterFromRight: {
from: {opacity: '0', transform: 'translateX(200px)'},
to: {opacity: '1', transform: 'translateX(0)'},
},
enterFromLeft: {
from: {opacity: '0', transform: 'translateX(-200px)'},
to: {opacity: '1', transform: 'translateX(0)'},
},
exitToRight: {
from: {opacity: '1', transform: 'translateX(0)'},
to: {opacity: '0', transform: 'translateX(200px)'},
},
exitToLeft: {
from: {opacity: '1', transform: 'translateX(0)'},
to: {opacity: '0', transform: 'translateX(-200px)'},
},
scaleIn: {
from: {opacity: '0', transform: 'rotateX(-10deg) scale(0.9)'},
to: {opacity: '1', transform: 'rotateX(0deg) scale(1)'},
},
scaleOut: {
from: {opacity: '1', transform: 'rotateX(0deg) scale(1)'},
to: {opacity: '0', transform: 'rotateX(-10deg) scale(0.95)'},
},
fadeIn: {
from: {opacity: '0'},
to: {opacity: '1'},
},
fadeOut: {
from: {opacity: '1'},
to: {opacity: '0'},
},
},
},
},
plugins: [
tailwindcssRadix,
tailwindcssRadixColors,
tailwindContainerQueries,
tailwindForms,
({matchUtilities}: {matchUtilities: PluginAPI['matchUtilities']}) => {
matchUtilities({
perspective: value => ({
perspective: value,
}),
});
},
],
} satisfies Config;