Files
wanderer/docs/tailwind.config.mjs
Christian Beutel 2a714486e3 adds starlight docs
2024-06-09 16:11:12 +02:00

25 lines
810 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import colors from 'tailwindcss/colors';
import starlightPlugin from '@astrojs/starlight-tailwind';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
// Your preferred accent color. Indigo is closest to Starlights defaults.
accent: colors.blue,
// Your preferred gray scale. Zinc is closest to Starlights defaults.
gray: "#242734",
},
fontFamily: {
// Deine bevorzugte Schriftart. Starlight verwendet standardmäßig eine Systemschriftart.
sans: ['"IBM Plex Sans"'],
// Deine bevorzugte Code-Schriftart. Starlight verwendet standardmäßig die Systemschriftart Monospace.
mono: ['"IBM Plex Mono"'],
},
},
},
plugins: [starlightPlugin()],
};