-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
gray: {
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
500: '#6B7280',
600: '#4B5563',
900: '#111827',
},
blue: {
600: '#2563EB',
700: '#1D4ED8',
},
red: {
50: '#FEF2F2',
300: '#FCA5A5',
500: '#EF4444',
600: '#DC2626',
},
green: {
50: '#F0FDF4',
300: '#86EFAC',
},
},
spacing: {
'6': '1.5rem',
'32': '8rem',
},
borderRadius: {
'lg': '0.5rem',
},
animation: {
'spin': 'spin 1s linear infinite',
},
transitionProperty: {
'colors': 'background-color, border-color, color, fill, stroke',
},
transitionDuration: {
'200': '200ms',
}
},
},
plugins: [],
}