-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (70 loc) · 1.62 KB
/
tailwind.config.js
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
module.exports = {
content: ['./app/**/*.{ts,tsx,jsx,js}'],
theme: {
extend: {
fontFamily: {
sans: ['Montserrat', 'sans-serif']
},
screens: {
'3xl': '1920px'
},
animation: {
enter: 'enter 200ms ease-out',
'slide-in': 'slide-in 1.2s cubic-bezier(.41,.73,.51,1.02)',
leave: 'leave 150ms ease-in forwards'
},
keyframes: {
enter: {
'0%': { transform: 'scale(0.9)', opacity: 0 },
'100%': { transform: 'scale(1)', opacity: 1 }
},
leave: {
'0%': { transform: 'scale(1)', opacity: 1 },
'100%': { transform: 'scale(0.9)', opacity: 0 }
},
'slide-in': {
'0%': { transform: 'translateY(-10%)' },
'100%': { transform: 'translateY(0)' }
}
},
colors: {
neutral: {
DEFAULT: '#fff',
100: '#F5F9FF',
200: '#E6EDF7',
300: '#DAE4F2',
500: '#8FA3BF',
600: '#7C899C',
900: '#252F3D'
},
brand: {
light: {
DEFAULT: '#E5F0FF',
secondary: '#CCE1FF'
},
primary: {
DEFAULT: '#176FEB',
hover: '#1667D9'
},
secondary: {
DEFAULT: '#FF80FF',
hover: '#F279F2'
}
},
green: {
DEFAULT: '#29CC74',
light: '#CCFFE3'
},
red: {
DEFAULT: '#E07F4F',
light: '#FFDFD9'
},
aerolab: {
DEFAULT: '#FF8800',
to: '#FF6600'
}
}
}
},
plugins: []
};