tijl.dev-core/tailwind.config.ts
tijl a3b4155c0a
Some checks failed
build / build (push) Successful in 9m40s
release-tag / release-image (push) Has been cancelled
fixes
2024-09-11 15:23:31 +02:00

36 lines
859 B
TypeScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./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: "#212121", // #212121
//"base-100": "#181818", // previously 171717
"base-100": "#0B0908",
"base-200": "#0B0908", // previously 151515
"base-300": "#171717", // previously 121212
info: "#0ea5e9",
success: "#22c55e",
warning: "#FBBD23",
error: "#ef4444",
"--rounded-btn": "0.75rem",
"--border-btn": "2px",
"--tab-border": "2px",
//"--btn-text-case": "uppercase",
},
},
],
},
};