-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.34 KB
/
tailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,ts,jsx,tsx}",],
theme: {
extend: {
colors: {
'white': {
100: "#FFFFFF",
200: "#F2F2F2"
},
'black': {
100: "#000000",
200: "#00060D"
},
'green': {
100: "#50F296",
200: "#0AA689",
300: "#01261F",
400: "#22C55E",
},
'gray': {
50: "#F0F0F0",
300: "#F3F3F3",
400: "#6B7280",
500: "#D9D9D9",
600: "#4B5563",
800: "#1F2937",
900: "#9D9D9D",
},
'red': {
100: "#FF0000",
200: "#EF4444"
},
'orange': {
100: "#FB923C"
},
'blue': {
100: "#e3f2fd",
500: "#1D4ED8"
},
},
animation: {
'fade-in': 'fadeIn 3s ease-in-out forwards',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0, transform: 'translateY(20px)' },
'100%': { opacity: 1, transform: 'translateY(0)' },
}
},
},
},
plugins: [],
}