-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 839 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 839 Bytes
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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./index.html"],
theme: {
extend: {
boxShadow: {
"custom-md-blue": "0px 0px 10px #A2D476",
"custom-md-lightBlue": "0px 0px 10px #15A5E5",
},
colors: {
lightGreen: "#A2D476",
lightDark: "#20232A",
darkGray: "#282C34",
lightGray: "#33373E",
lightBlue: "#63DAF9",
lightBlue2: "#15A5E5",
transBlue: "#63dbf968",
dropdown: "#4f535a",
richBlue: "#0B1120",
textGray: "#94A3B7",
homeGray: "#121824",
},
fontFamily: {
themeFont: ["Open Sans", "Helvetica", "Arial", "sans-serif"],
spline: ["Spline Sans", "sans-serif"],
},
screens: {
tablet: "1200px",
},
},
},
plugins: [],
darkMode: "class",
};