Initial template commit

This commit is contained in:
2025-03-07 17:16:08 +02:00
commit 11f391964b
68 changed files with 1632 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
/** @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",
],
},
};