forked from mkkapadi12/Bajrang-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
// const flowbite = require("flowbite-react/tailwind");
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
// , flowbite.content()
theme: {
extend: {
colors: {
heading: "rgb(24,24,29)",
text: "rgba(29,29,29,0.8)",
white: "#fff",
black: "#212529",
helper: "#8490ff",
bg: "#F6F8FA",
footer_bg: "#0a1435",
head: "#E2218F",
desc: "#8DC6A3",
btn: "rgb(98,84,243)",
hr: "#fffff",
border: "rgba(98, 84, 243, 0.5)",
gradient:
"linear-gradient(0deg, rgb(132, 144, 255) 0%, rgb(98, 189, 252) 100%)",
shadow:
"rgba(0,0,0,0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px",
shadowSupport: "rgba(0,0,0,0.16) 0px 1px 4px",
},
media: {
mobile: "768px",
tab: "998px",
},
zIndex: {
99: "99",
},
gridTemplateRows: {
"[auto,auto,1fr]": "auto auto 1fr",
},
},
},
plugins: [],
// flowbite.plugin()
};