-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
63 lines (62 loc) · 1.65 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
jakarta: ['var(--font-jakarta)', 'sans-serif'],
},
gridTemplateColumns: {
'13': 'repeat(13, minmax(0, 1fr))',
},
colors: {
blue: {
400: '#2589FE',
500: '#0070F3',
600: '#2F6FEB',
},
'ring-color': 'rgb(162 223 255)',
},
},
keyframes: {
shimmer: {
'100%': {
transform: 'translateX(100%)',
},
},
slideIn: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0)' },
},
hide: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
swipeOut: {
'0%': { transform: 'translateX(var(--radix-toast-swipe-end-x))' },
'100%': { transform: 'translateX(100%)' },
},
overlayShow: {
from: { opacity: '0' },
to: { opacity: '1' },
},
contentShow: {
from: { opacity: '0', transform: 'translate(-50%, -48%) scale(0.96)' },
to: { opacity: '1', transform: 'translate(-50%, -50%) scale(1)' },
},
},
animation: {
slideIn: 'slideIn 150ms cubic-bezier(0.16, 1, 0.3, 1)',
hide: 'hide 100ms ease-in',
swipeOut: 'swipeOut 100ms ease-out',
overlayShow: 'overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
contentShow: 'contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1)',
},
},
plugins: [],
};
export default config;