-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
44 lines (43 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
44
import type { Config } from 'tailwindcss'
export default {
content: ['./src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
mono: {
50: '#eeeeee',
100: '#e6e6e6',
200: '#cccccc',
300: '#b3b3b3',
400: '#999999',
500: '#808080',
600: '#666666',
700: '#4d4d4d',
800: '#333333',
900: '#1c1c1c',
950: '#111111',
},
},
keyframes: {
in: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { oppacity: '1', transform: 'translateY(0)' },
},
out: {
'0%': { opacity: '1', transform: 'translateY(0px)' },
'100%': { opacity: '0', transform: 'translateY(-10px)' },
},
fade: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
animation: {
in: 'in 350ms both',
out: 'out 250ms both',
fade: 'fade 1000ms both',
},
},
},
plugins: [],
} satisfies Config