-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
darkGreen: "#166563",
darkGreenDark: "#166563",
mediumGreen: " #88c2ac",
mediumGreenDark: "#2a3a3a",
fairGreen: "#ebf1f075",
lighterGreen: "#ebf1f0fa",
lightGreen: "#e6ede9",
lightGreenDark: "#122323",
orange: "#f69d3e",
orangeDark: "#d08214",
darkGray: "#333333",
darkGrayDark: "#7a7a7a",
lightGray: "#dddddd",
lightDrayDark: "#dddddd",
redMedium: "#de7c7c",
redLight: "#de8c8c",
headerText: "#595959",
headerTextDark: "#cacaca",
midnightMoss: "#252927",
optionHover: "#44444412",
optionHoverDark: "#bebebe51",
},
margin: {
"60px": "60px",
},
width: {
modalWidth: "500px",
},
height: {
headerHeight: "70px",
},
spacing: {
"180px": "180px",
},
},
},
plugins: [],
};