mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-25 22:01:17 +00:00
20 lines
402 B
JavaScript
20 lines
402 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
daisyui: {
|
||
|
themes: [
|
||
|
{
|
||
|
halloween: {
|
||
|
...require("daisyui/src/theming/themes")["[data-theme=halloween]"],
|
||
|
primary: "#12D10E",
|
||
|
secondary: "#06AFC6",
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [require("daisyui")],
|
||
|
};
|