Files
charts/website/tailwind.config.ts
2024-10-17 17:29:05 +02:00

39 lines
793 B
TypeScript

import type { Config } from "tailwindcss";
import starlightPlugin from "@astrojs/starlight-tailwind";
// https://starlight.astro.build/guides/css-and-tailwind/#tailwind-css
// Those are the default from starlight generator
// Generated color palettes
const accent = {
200: "#b3c7ff",
600: "#364bff",
900: "#182775",
950: "#131e4f",
};
const gray = {
100: "#f5f6f8",
200: "#eceef2",
300: "#c0c2c7",
400: "#888b96",
500: "#545861",
700: "#353841",
800: "#24272f",
900: "#17181c",
};
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
// add color variable
extend: {
colors: {
accent,
gray,
"tc-primary": "#316ce6",
},
},
},
plugins: [starlightPlugin()],
} as Config;