FrostByte/client-solid/tailwind.config.js

28 lines
664 B
JavaScript
Raw Normal View History

2023-10-19 02:42:37 +02:00
/** @type {import('tailwindcss').Config} */
export default {
2023-11-22 15:31:58 +01:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
2023-10-19 02:42:37 +02:00
daisyui: {
themes: [
{
mytheme: {
primary: "#286ca8",
secondary: "#528cbf",
2023-11-22 15:31:58 +01:00
accent: "#6ff7c5",
neutral: "#0369A1", // Main color of replies
"base-100": "#082f49", // Main Color for most components, used in wide variety
2023-11-22 15:31:58 +01:00
info: "#8b9be5",
success: "#79e2b4",
warning: "#efb261",
error: "#e1604c",
2023-10-19 02:42:37 +02:00
},
},
],
},
theme: {
extend: {},
},
2023-11-13 11:51:55 +01:00
// eslint-disable-next-line no-undef
2023-10-19 02:42:37 +02:00
plugins: [require("daisyui")],
2023-11-22 15:31:58 +01:00
};