Files
open-saas/opensaas-sh/blog/tailwind.config.mjs
Franjo Mindek 448f3290fc format write
2025-09-18 11:29:50 +02:00

20 lines
426 B
JavaScript

import starlightPlugin from "@astrojs/starlight-tailwind";
import colors from "tailwindcss/colors";
const yellow = colors.yellow;
const gray = colors.gray;
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
accent: yellow,
gray,
},
},
},
plugins: [starlightPlugin()],
};