-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
62 lines (62 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#f0f4f8',
100: '#d9e2ef',
200: '#bcccdc',
300: '#9cb3c9',
400: '#7d95b6',
500: '#62799e',
600: '#4b5f7c',
700: '#3c4b64',
800: '#2d3748',
900: '#1a202c'
},
secondary: {
50: '#e6f1ff',
100: '#b3d7ff',
200: '#80bdff',
300: '#4da3ff',
400: '#1a89ff',
500: '#0070f3',
600: '#0061d1',
700: '#0052b2',
800: '#004494',
900: '#003366'
}
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
boxShadow: {
'soft': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
'hard': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)'
},
animation: {
'fade-in': 'fadeIn 0.5s ease-out',
'slide-up': 'slideUp 0.5s ease-out'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' }
}
}
},
},
plugins: [],
};