-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
87 lines (85 loc) · 1.97 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
84
85
86
87
import type { Config } from 'tailwindcss';
export default {
content: ['./app/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
transitionProperty: {
header: 'height, opacity',
textLink: 'text-decoration-line, color',
},
colors: {
primary: '#00E0D5',
primaryMaybe: '#00F5E9',
//BG
secondary: '#021627',
secondary95: '#0F2232',
//Dark secondary BG for header and footer
richBlack: '#010B13',
tertiary: '#F7ECCA',
errorRed: '#ED254E',
successGreen: '#CAFE48',
},
boxShadow: {
box: '0 2px 2.5em 0 rgba(1,1,2,.28)',
},
keyframes: {
'spinner-grow': {
'0%': {
transform: 'scale(0)',
},
'50%': {
transform: 'none',
opacity: '1',
},
},
pop: {
'25%': {
transform: 'scale(0.7)',
},
'75%': {
transform: 'scale(1.1)',
},
},
shake: {
'0%': {
transform: 'scale3d(1, 1, 1)',
},
'10%, 20%': {
transform: 'scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -2deg)',
},
'30%, 50%, 70%, 90%': {
transform: 'scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 2deg)',
},
'40%, 60%, 80%': {
transform: 'scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -2deg)',
},
'100%': {
transform: 'scale3d(1, 1, 1)',
},
},
'zoom-in': {
'0%': {
opacity: '0',
transform: 'scale3d(0.3, 0.3, 0.3)',
},
'50%': {
opacity: '1',
},
},
},
},
container: {
center: true,
},
screens: {
xxs: '325px',
xs: '480px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
},
plugins: [],
} satisfies Config;