Initial template commit
This commit is contained in:
64
frontend/tailwind.config.js
Normal file
64
frontend/tailwind.config.js
Normal 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",
|
||||
],
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user