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: "class", plugins: [heroui()], }