forked from litmuschaos/litmus-website-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 1.05 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 = {
mode: "jit",
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./_includes/**/*.{js,ts,jsx,tsx}",
"./_layouts/**/*.{js,ts,jsx,tsx}",
"./_blog/**/*.{js,ts,jsx,tsx}"
],
darkMode: false,
theme: {
extend: {
colors: {
transparent: "transparent",
hint: "#696F8C",
primary: "#1C0732",
success: "#51BD93",
accent: "#878ede",
litmus: "#5b44ba",
bg1: "#1c0732",
disabled: "#BCB9C6",
highlight: "#F7F8FA",
overlay: "rgba(0,0,0,0.5)",
backdrop: "rgba(0,0,0,0.8)",
intuit: "#000000",
orange: "#000000",
lenskart: "#005797",
anutanetworks: "#03B5B0"
},
backgroundImage: theme => ({
halodoc: "url('/adoptersPage/halodocHero.webp')",
kitopi: "url('/adoptersPage/kitopiHero.webp')"
}),
height: {
200: "200px",
300: "300px"
}
}
},
variants: {
extend: {}
},
plugins: [require("@tailwindcss/aspect-ratio")]
}