mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 11:51:17 +00:00
73a9bae2ff
* Moving from yarn to pnpm. * Exclude pnp-lock. * Exclude pnp-lock 2. * Forgot 2 more. * Upgrading deps.
25 lines
602 B
JavaScript
25 lines
602 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
module.exports = {
|
|
daisyui: {
|
|
themes: [
|
|
{
|
|
halloween: {
|
|
...require("daisyui/src/theming/themes")["halloween"],
|
|
primary: "#12D10E",
|
|
secondary: "#06AFC6",
|
|
"base-content": "#ffffff",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ["Inter", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")],
|
|
};
|