-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
55 lines (53 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
sm: "640px",
md700: "700px",
md: "768px",
lg: "1024px",
lg1150: "1150px",
xl: "1280px",
},
extend: {
height: {
"2px": "2px",
"calc-sideBar": "calc(100vh - 2rem)",
"calc-mainbody": "calc(100vh - 5rem)",
},
backgroundImage: {
"hero-pattern": "url('./assets/hero-acc.jpg')",
},
colors: {
primary: "#5033c0",
primaryDark: "#4b31b3",
iconPurple: "#665bce",
orange: "#FF934E",
yellow: "#ffd60a",
green: "#40CC7C",
red: "#FF555D",
blue: "#4180fc",
blueDark: "#296efa",
black: "#151515",
bgWhole: "#171430",
bgBox: "#24204b",
activeIcon: "#332d6c",
blackLightBg: "#222",
bgInput: "#f2ebec",
gray: "#818181",
lightGray: "#cfcfcf",
mediumGray: "#adadad",
bgColorLoad: "#e2e2e2c4",
bgModal: "#54545488",
shadowDark: "#080707",
},
spacing: {
w30: "30%",
"calc-mainBody": "calc(100% - 9rem)",
"calc-cardContainer": "calc(100%-1.25rem)",
},
},
},
plugins: [],
};