-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (37 loc) · 999 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
45 lines (37 loc) · 999 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./views/**/*.html"],
theme: {
colors: {
"background": "#111313",
"background-slightly-lighter": "#141616",
"background-lighter": "#1c1f21",
"background-more-lighter": "#202426",
"background-bit-more-lighter": "#24292b",
"background-lightest": "#272c2d",
"label": "#747d80",
"placeholder": "#5b6568",
"available": "#6dc644",
"reserved": "#3976d0",
"occupied": "#c64444",
"black-25": "rgba(17, 19, 19, 25%)",
},
extend: {
gridTemplateColumns: {
"auto-fill": "repeat(auto-fill, 100px)"
},
gridTemplateRows: {
"auto-fill": "repeat(auto-fill, 100px)"
},
backgroundImage: {
"hotel": "url('/assets/images/hotel-bg.png')",
},
height: {
"9/10": "90vh",
"full-4": "calc(100vh - 4rem)",
"26": "6.5rem",
"85": "21.5rem",
},
}
},
}