mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
17 lines
401 B
JavaScript
17 lines
401 B
JavaScript
import { heroui } from "@heroui/react"
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
|
|
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brand: "#004b86",
|
|
},
|
|
},
|
|
},
|
|
darkMode: ["selector", "body.theme-dark"],
|
|
plugins: [heroui()],
|
|
}
|