-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (47 loc) · 1.18 KB
/
tailwind.config.js
File metadata and controls
55 lines (47 loc) · 1.18 KB
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
module.exports = {
content: [
"./pages/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
courgette: ["Courgette", "cursive"],
baskerville: ["LibreBaskerville", "serif"],
},
backgroundImage: {
"lc-main": "url('../public/img/Main.webp')",
"lc-resto": "url('../public/img/Resto.webp')",
"lc-rooms": "url('../public/img/Rooms.webp')",
"lc-stages": "url('../public/img/Stages.jpg')",
"lc-services": "url('../public/img/Services.jpg')",
"lc-activites": "url('../public/img/Activites.jpg')",
},
},
},
daisyui: {
styled: true,
themes: false,
base: true,
utils: true,
logs: false,
prefix: "",
darkTheme: "dark",
themes: [
{
mytheme: {
primary: "#9d174d",
secondary: "#828DF8",
accent: "#F471B5",
neutral: "#f3f4f6",
"base-100": "#1c1917",
info: "#0CA6E9",
success: "#2BD4BD",
warning: "#F4C152",
error: "#FB6F84",
},
},
],
},
plugins: [require("daisyui"), require("@tailwindcss/typography")],
}