-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.06 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
Inter: ["Inter", "sans-serif"],
},
boxShadow: {
soilShadow: "0px 1px 15px rgba(0, 0, 0, 0.1)",
},
backgroundImage: {
onion: "url('/public/vercel.svg')",
},
dropShadow: {
"button-shadow": "0px 1px 15px rgba(0, 0, 0, 0.1)",
},
colors: {
soilGreen: {
10: "#78EECB",
20: "#74FA6D",
50: "#ACCEA0",
70: "#6BAF22",
100: "#268A02",
},
darkBlackGreen: "#071B08",
// soilGreen: "#74FA6D",
soilGray: {
200: "#F3F3F3",
500: "#AAAAAA",
300: "#B4B4B4",
400: "#BCBCBC",
600: "#B4B4B4",
},
bgGrey: "#F1F6F7",
gradientBlue: "#D900A9",
gradientViolet: "#004AD9",
},
opacity: ["disabled"],
},
},
plugins: [require("@tailwindcss/forms"), require("tailwind-scrollbar-hide")],
};