65 lines
1.0 KiB
JavaScript
65 lines
1.0 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: "jit",
|
|
plugins: [require("daisyui")],
|
|
future: {
|
|
hoverOnlyWhenSupported: true,
|
|
},
|
|
content: [
|
|
"./assets/css/input.css",
|
|
"./src/main.rs",
|
|
"./src/*.rs",
|
|
"./src/**/*.rs",
|
|
"./index.html",
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ["Figtree"],
|
|
display: ["Comfortaa"],
|
|
mono: ["Cousine"],
|
|
},
|
|
extend: {
|
|
screens: {
|
|
"3xl": "1920px",
|
|
"4xl": "2560px",
|
|
},
|
|
},
|
|
},
|
|
daisyui: {
|
|
themes: [
|
|
"light",
|
|
"dark",
|
|
"cupcake",
|
|
"bumblebee",
|
|
"emerald",
|
|
"corporate",
|
|
"synthwave",
|
|
"retro",
|
|
"cyberpunk",
|
|
"valentine",
|
|
"halloween",
|
|
"garden",
|
|
"forest",
|
|
"aqua",
|
|
"lofi",
|
|
"pastel",
|
|
"fantasy",
|
|
"wireframe",
|
|
"black",
|
|
"luxury",
|
|
"dracula",
|
|
"cmyk",
|
|
"autumn",
|
|
"business",
|
|
"acid",
|
|
"lemonade",
|
|
"night",
|
|
"coffee",
|
|
"winter",
|
|
"dim",
|
|
"nord",
|
|
"sunset",
|
|
],
|
|
},
|
|
};
|