-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 loc) · 1001 Bytes
/
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
51
52
53
54
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
fontFamily: {
cursive: ["Montserrat Alternates", "sans-serif"],
},
screens: {
tablet: "820px",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
],
daisyui: {
themes: [
"light",
"winter",
"synthwave",
"cyberpunk",
"luxury",
"business",
"coffee",
"nord",
// "halloween",
// "forest",
// "aqua",
// "black",
// "night",
// "sunset",
// "dark",
// "dracula",
// "cupcake",
// "bumblebee",
// "emerald",
// "corporate",
// "retro",
// "valentine",
// "garden",
// "lofi",
// "pastel",
// "fantasy",
// "wireframe",
// "cmyk",
// "autumn",
// "acid",
// "lemonade",
// "dim",
],
},
};