mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-11-20 00:36:34 +01:00
16 lines
378 B
JavaScript
16 lines
378 B
JavaScript
import starlightPlugin from "@astrojs/starlight-tailwind";
|
|
import tailwindColors from "tailwindcss/colors";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
accent: tailwindColors.yellow,
|
|
},
|
|
},
|
|
},
|
|
plugins: [starlightPlugin()],
|
|
};
|