Spaces:
Running
Running
File size: 551 Bytes
cff077a 5fe7b6c d460634 cff077a 502f722 d768932 145d037 d768932 d460634 d768932 cff077a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "selector",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [require("daisyui"), require("@tailwindcss/typography")],
daisyui: {
logs: false,
themes: [
{
lynxkite: {
primary: "oklch(75% 0.2 55)",
secondary: "oklch(75% 0.13 230)",
accent: "oklch(55% 0.25 320)",
neutral: "oklch(35% 0.1 240)",
"base-100": "#ffffff",
},
},
],
},
};
|