-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
139 lines (135 loc) · 3.48 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/** @type {import('tailwindcss').Config} */
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
"./public/**/*.html",
"./src/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {
backgroundImage: {
'gradient-1': "linear-gradient(5.3deg, #33CC99 12.83%, #14523D 110.36%)",
'gradient-primary': "linear-gradient(270.04deg, rgba(51, 204, 153, 0) -63.21%, #33CC99 53.05%, rgba(51, 204, 153, 0) 162.26%)",
'gradient-2': "linear-gradient(269.98deg, #33CC99 0.02%, #D8CEFD 156.99%)",
'gradient-3': "linear-gradient(269.86deg, rgba(51, 204, 153, 0.4) -17.72%, rgba(51, 204, 153, 0) 92.12%)"
},
boxShadow: {
white: "0px 4px 14px 0px rgba(0, 0, 0, 0.1)",
"1": "0px 8px 28px 0px rgba(0, 0, 0, 0.1)",
"2": "0px 4px 14px 0px #0000001A"
},
colors: {
primary: {
DEFAULT: "#33CC99",
light: "#D6F5EB",
dark: "#29A37A",
darker: "#14523D"
},
secondary: {
DEFAULT: "#714CF9",
light: "#D8CEFD",
dark: "#3007C5",
darker: "#180363"
},
neutral: {
DEFAULT: "#FFFFFF",
bg: "#F3F3F3",
surface: {
DEFAULT: "#F8F8F8",
hover: "#e3e3e3",
active: "#b4b4b4",
disabled: "#D8D8D8"
}
},
text: {
DEFAULT: "#414141",
secondary: "#838383",
placeholder: "#c6c6c6",
title: "#191B1E",
disabled: "#8D8D8D"
},
border: {
divider: "#d8d8d8",
outline: "#e3e3e3",
shadow: "#c6c6c6"
},
darkmode: {
neutral: {
DEFAULT: "#181818",
surface: {
DEFAULT: "#1F2225",
hover: "#343434",
active: "#363636"
}
},
text: {
DEFAULT: "#D8D8D8",
secondary: "#b4b4b4",
placeholder: "#363636",
title: "#FFFFFF",
disabled: "#8D8D8D"
},
border: {
divider: "#272727",
outline: "#363636",
shadow: "#272727"
}
},
success: {
DEFAULT: "#0fa44d",
light: "#e7f6ed",
dark: "#0b7b3a",
darker: "#05391b"
},
error: {
DEFAULT: "#d21c1c",
light: "#fbe8e8",
dark: "#9e1515",
darker: "#4a0a0a"
},
notice: {
DEFAULT: "#df7b00",
light: "#fcf2e6",
dark: "#a75c00",
darker: "#4e2b00"
},
positive: {
DEFAULT: "#0fa4a4",
light: "#e7f6f6",
dark: "#0b7b7b",
darker: "#053939"
},
informative: {
DEFAULT: "#0172cb",
light: "#e6f1fa",
dark: "#015698",
darker: "#002847"
},
white: "#FFFFFF",
green: "#1EAA7F",
// ======== Remove later ==============
cyan: "#DFF9F7",
pale: "#E4F8F2",
silver: "#ECECEC",
black: {
DEFAULT: "#000000",
1: "#282828",
2: "#212121",
3: "#465873"
},
light: {
DEFAULT: "#EFEFEF",
1: "#EEEEEE",
2: "#F8F8F8"
},
lightGray: "#E0E0E0",
gray: {
DEFAULT: "#878787",
1: "#E2E2E2",
2: "#B6B6B6"
}
}
},
},
plugins: [],
})