forked from amirghaderian/Turan-Gard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
38 lines (34 loc) · 785 Bytes
/
tailwind.config.cjs
File metadata and controls
38 lines (34 loc) · 785 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
34
35
36
37
38
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx,css}",
],
theme: {
extend: {
colors: {
"myblue" : "#BFD7ED",
"myorange" : "#FF8300",
"mywhite" : "#FAFAFA",
"myblack" : "#1D1D1D",
"mylight" : "#EBF1F7",
"mygray" : " #878383",
"mybody" :"#FEF2F2",
"mycard":"rgb(255, 153,0,0.7)",
"card1":"#f43f5e",
"card2":"#3b82f6",
"card3":"#22c55e"
},
fontFamily: {
'sans': ['"iranyekan"'],
},
backgroundImage : {
'bestTrip' : "url('./public/assets/Vector.png')",
},
spacing : {
200:"50rem",
}
},
},
plugins: [],
}