-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
33 lines (33 loc) · 936 Bytes
/
tailwind.config.cjs
File metadata and controls
33 lines (33 loc) · 936 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./App.{js,jsx,ts,tsx}",
"./screens/*.{js,jsx,ts,tsx}",
"./screens/customer/*.{js,jsx,ts,tsx}",
"./screens/producer/*.{js,jsx,ts,tsx}",
"./components/*.{js,jsx,ts,tsx}",
"./components/cards/*.{js,jsx,ts,tsx}",
"./components/utils/*.{js,jsx,ts,tsx}",
"./components/utils/badges/*.{js,jsx,ts,tsx}",
"./components/utils/buttons/*.{js,jsx,ts,tsx}",
"./components/utils/inputs/*.{js,jsx,ts,tsx}",
"./components/map/*.{js,jsx,ts,tsx}",
"./components/utils/texts/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primary: "#98B66E",
secondary: "#262E20",
lightbg: "#FCFFF0",
darkbg: "#262E20",
tertiary: "#444C3D",
danger: "#942911",
warning: "#D16014",
success: "#0081A7",
night: "#0A090B",
},
},
},
plugins: [],
};