-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
73 lines (73 loc) · 1.6 KB
/
tailwind.config.js
File metadata and controls
73 lines (73 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./pages/**/*.{ts,tsx}",
"./src/**/*.{ts,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: "#f1f8f4",
100: "#e2f1e8",
200: "#bfe0ca",
300: "#9acdaa",
400: "#52a871",
500: "#1f7d45",
600: "#166c38",
700: "#165430",
800: "#133e27",
900: "#0d261a",
},
neutral: {
100: "#f5f5f5",
200: "#e5e5e5",
300: "#cccccc",
400: "#999999",
500: "#7a7a7a",
600: "#5e5e5e",
700: "#3e3e3e",
800: "#2a2a2a",
900: "#171717",
},
green: {
DEFAULT: "#004039",
1100: "#092b28",
1000: "#004039",
800: "#0b703f",
700: "#359b11",
600: "#00c708",
500: "#89e231",
400: "#14f195",
300: "#dae7d4",
100: "#f1f4f3",
},
basic: {
1000: "#111111",
900: "#3a3d3c",
800: "#6f7471",
700: "#8c918e",
600: "#b3b3b3",
300: "#d4d6d4",
200: "#efefef",
100: "#f9f9f9",
},
},
animation: {
"fade-in": "fadeIn 0.4s ease-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
boxShadow: {
surface: "0 4px 32px 0 rgba(0, 0, 0, 0.08)",
},
},
},
plugins: [],
};