-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (45 loc) · 1019 Bytes
/
tailwind.config.js
File metadata and controls
46 lines (45 loc) · 1019 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
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
headerColor: "#242530",
textColor: "#ffffff",
btnColor: "#0172F4",
noteColor: "#FFCF7C",
},
fontWeight: {
customWeight: 500,
},
height: {
headerHeight: "74px",
},
maxHeight: {
navbarHeight: "420px",
},
minHeight: {
customHeight: "530px",
},
fontFamily: {
montserrat: ["Montserrat"],
dancingScript: ["Dancing Script"],
},
fontSize: {
logoText: "30px",
customText: "15px",
tablehHeaderText: "16px",
headerText: ["50px", "60px"],
tableHeader: ["15px", "25px"],
},
backgroundColor: {
customRed: "rgba(172, 30, 35, 1)",
testimonialCard: "#F9F9F9",
},
boxShadow: {
custom: "0 0 15px rgba(0, 0, 0, 0.3)",
},
},
},
plugins: [],
};