-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
104 lines (102 loc) · 2.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#493D1D", // The default primary color
50: "#FBF9F4", // Lightest shade
100: "#F6F3E9",
200: "#EFE9D7",
300: "#E5DABD",
400: "#DBCCA3",
500: "#D0BC86", // A darker shade of primary
600: "#C4AC69", // Even darker
700: "#B39646",
800: "#937B39",
900: "#6E5C2B",
950: "#493D1D",
},
secondary: {
DEFAULT: "#052250",
50: "#E2EDFD",
100: "#C5DAFB",
200: "#8CB5F8",
300: "#5290F4",
400: "#196BF1",
500: "#0C53C5",
600: "#063176",
700: "#052250",
800: "#031635",
900: "#020C1D",
950: "#01060E",
},
success: {
DEFAULT: "#3C8B3F",
50: "#EDF7EE",
100: "#DBF0DC",
200: "#B8E0B9",
300: "#94D196",
400: "#6DC070",
500: "#4CAF50",
600: "#3C8B3F",
700: "#2E6B30",
800: "#1F4720",
900: "#0F2410",
950: "#081208",
},
failure: {
DEFAULT: "#D32F2F",
50: "#FCF2F2",
100: "#FAE6E6",
200: "#F4CCCC",
300: "#EDABAB",
400: "#E48181",
500: "#D32F2F",
600: "#C22929",
700: "#AD2424",
800: "#871C1C",
900: "#611414",
950: "#4C1010",
},
neutral: {
DEFAULT: "#FFFFFF",
50: "#F2F2F2",
100: "#EDEDED",
200: "#E0E0E0",
300: "#D4D4D4",
400: "#C4C4C4",
500: "#B3B3B3",
600: "#A1A1A1",
700: "#8C8C8C",
800: "#707070",
900: "#454545",
950: "#171717",
},
surface: {
light: "#FBF9F4",
dark: "#01060E",
},
light_text: {
default: "#171717",
secondary: "#707070",
tertiary: "#A1A1A1",
},
dark_text: {
default: "#F2F2F2",
secondary: "#E0E0E0",
tertiary: "#B3B3B3",
},
},
fontFamily: {
monlam: ["Monlam", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
},
},
plugins: [],
}