-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
48 lines (47 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/**/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
transitionDuration: {
'2000': '2000ms',
},
colors: {
'blue-1': '#010C15',
'blue-2': '#011627',
'blue-3': '#1E2D3D',
'blue-4': '#607B96',
'royal-blue': '#5565E8',
'light-gray': '#E5E9F0',
mirage: '#1C2B3A',
'regent-st-blue': '#A0BDE1',
'primary-blue-charcoal': '#011221',
'accent-turquoise': '#43D9AD',
'secondary-indigo': '#4D5BCE',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
keyframes: {
'ping-invert': {
'0%': { transform: 'scale(2)', opacity: '0' },
'75%, 100%': { transform: 'scale(1)', opacity: '1' },
},
'ping-invert-scale-inverted': {
'0%': { transform: 'scale(0.66)', opacity: '0' },
'75%, 100%': { transform: 'scale(1)', opacity: '1' },
},
},
animation: {
'ping-one-time': 'ping-invert 1s cubic-bezier(0, 0, 0.2, 1);',
discover: 'ping-invert-scale-inverted 500ms cubic-bezier(0, 0, 0.2, 1);',
'spin-slow': 'spin 2500ms linear infinite',
},
},
},
plugins: [
require('tailwindcss-animate'),
// ...
],
};
export default config;