-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (36 loc) · 886 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (36 loc) · 886 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/*.{html,js}",
"./src/js/*.js"],
// purge: ["*.{html,js}"],
theme: {
extend: {
backgroundImage: {
'RollingHills': "url('/images/RollingHillsWithElements.svg')",
'RollingHills_smallScreen': "url('/images/RollingHillsWithElements_smallScreen.svg')",
},
minHeight: (theme) => ({
...theme('spacing'),
}),
fontFamily: {
sans: [
'Helvetica', 'FreeSans',
...defaultTheme.fontFamily.sans,
],
},
}
},
plugins: [require("daisyui")],
// daisyUI config (optional)
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: true,
rtl: false,
prefix: "",
darkTheme: "forest",
themes:["emerald"],
},
}