forked from sajjathossainbd/hiring-staff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (37 loc) · 1.07 KB
/
tailwind.config.js
File metadata and controls
44 lines (37 loc) · 1.07 KB
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
/* eslint-disable no-undef */
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
"banner-image": "url('./src/assets/banner/bg-banner.svg')",
"tinny-banner-image-light":
"url('./src/assets/pricing/pricing-page-banner.png')",
"tinny-banner-image-dark":
"url('./src/assets/pricing/pricing-page-banner2.png')",
},
colors: {
// heading, button
blue: "#3C65F5",
darkBlue: "#05274F",
// text -
gray: "#4F5E64", // paragraphs tags
lightGray: "#A0Abb8", // halka light color
// dark theme text color
lightText: "#E0E7F6",
// dark theme button color
lightBlue: "#3C65F5",
// background colors
bgLightBlue: "#F8FAFF",
bgDeepBlue: "#E0E7F6",
bgLightWhite: "#f2f6fd",
// Other colors
white: "#ffffff",
black: "#000000",
softLightBlue: "#F8FAFF",
},
},
},
plugins: [require("daisyui")],
};