mirror of
https://github.com/sern-handler/website
synced 2026-06-17 05:12:21 +00:00
16 lines
611 B
JavaScript
16 lines
611 B
JavaScript
import starlightPlugin from '@astrojs/starlight-tailwind';
|
|
|
|
// Generated with https://starlight.astro.build/guides/css-and-tailwind/#tailwind-css
|
|
const accent = { 200: '#eabac2', 600: '#b6335c', 900: '#541c2b', 950: '#3a171f' };
|
|
const gray = { 100: '#f5f6f8', 200: '#eceef2', 300: '#c0c2c7', 400: '#888b96', 500: '#545861', 700: '#353841', 800: '#24272f', 900: '#17181c' };
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
colors: { accent, gray },
|
|
},
|
|
},
|
|
plugins: [starlightPlugin()],
|
|
}; |