-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (40 loc) · 1.11 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
maxHeight: {
"100": "25rem",
"128": "32rem",
"130": "35rem",
"132": "38rem",
},
height: {
"17": "70px",
"65": "260px",
},
weight: {
"17": "70px",
"65": "260px",
},
backgroundImage: {
slot: "url('/images/ui/inv_slot.png')",
l: "url('/images/ui/bg.jpg')",
health: "url('/images/ui/health.png')",
hunger: "url('/images/ui/hunger.png')",
sanity: "url('/images/ui/sanity.png')",
perishtime: "url('/images/ui/perishtime.png')",
cooktime: "url('/images/ui/cooktime.png')",
foodtype: "url('/images/ui/foodtype.png')",
button: "url('/images/ui/button_large.png')",
book: "url('/images/ui/tab_book.png')",
full: "url('/images/ui/full-bg.jpg')",
banner: "url('/images/ui/banner.png')",
},
},
},
plugins: [],
future: {
hoverOnlyWhenSupported: true,
},
} satisfies Config;