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