tijl.dev-core/tailwind.config.ts

36 lines
859 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
2024-09-05 00:06:08 +02:00
//"base-100": "#181818", // previously 171717
"base-100": "#0B0908",
"base-200": "#0B0908", // previously 151515
"base-300": "#121212", // previously 121212
2024-08-19 22:32:43 +02:00
info: "#0ea5e9",
success: "#22c55e",
warning: "#FBBD23",
error: "#ef4444",
"--rounded-btn": "0.75rem",
2024-09-05 00:06:08 +02:00
"--border-btn": "2px",
"--tab-border": "2px",
2024-08-19 22:32:43 +02:00
//"--btn-text-case": "uppercase",
},
},
],
},
};