tijl.dev-core/tailwind.config.ts

33 lines
773 B
TypeScript
Raw Normal View History

2024-08-19 22:32:43 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2024-08-31 17:42:51 +02:00
content: ["./web/views/**/*.html", "./web/**/*.{js,ts,css}"],
2024-08-19 22:32:43 +02:00
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",
},
},
],
},
};