tijl.dev-core/tailwind.config.ts
tijl 2ef54d14f9
All checks were successful
build / build (push) Successful in 35s
release-tag / release-image (push) Successful in 16m13s
update
2024-08-24 17:48:14 +02:00

33 lines
797 B
TypeScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./internal/**/*.html", "./web/views/**/*.html", "./web/**/*.{js,ts,css}"],
theme: {
extend: {},
},
variants: {},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
logs: false,
themes: [
{
ttservices: {
primary: "#f7931a",
secondary: "#804df3", // #804df3
accent: "#66c4fa", // #66c4fa
neutral: "#f7931a", // #212121
"base-100": "#181818", // previously 171717
"base-200": "#151515", // previously 151515
"base-300": "#101010", // previously 121212
info: "#0ea5e9",
success: "#22c55e",
warning: "#FBBD23",
error: "#ef4444",
"--rounded-btn": "0.75rem",
//"--btn-text-case": "uppercase",
},
},
],
},
};