-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (46 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
import flowbite from "flowbite-react/tailwind";
export const content = [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
flowbite.content(),
];
export const theme = {
extend: {
colors: {
golden: {
100: "#b59c7b",
500: "#b49062",
800: "#b88039",
},
blueGray: {
50: "#eceff1",
100: "#90a4ae",
500: "#607d8b",
800: "#37474f",
900: "#263238",
},
slate: {
50: "#f8fafc",
500: "#64748b",
800: "#0f172a",
950: "#020617",
},
dark: "#222222",
ligthDark: "#383737",
},
backgroundImage: {
"about-us": "url('/rooms/aboutus.jpg')",
"special-package": "url('/rooms/dark-hotel.jpg')",
"service-background": "url('/rooms/service.jpg')",
"default-detail-cover": "url('/rooms/window-pool.jpg')",
"auth-cover": "url('/auth/hotel-cover.png')",
},
},
screens: {
xs: "480px",
sm: "768px",
md: "1060px",
},
};
export const plugins = [flowbite.plugin()];