mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 11:18:58 -07:00
38 lines
776 B
JavaScript
38 lines
776 B
JavaScript
import starlightPlugin from '@astrojs/starlight-tailwind'
|
|
import defaultTheme from 'tailwindcss/defaultTheme'
|
|
|
|
const accent = {
|
|
200: '#bee1ff',
|
|
600: '#2376ed',
|
|
900: '#1d448b',
|
|
950: '#162b55',
|
|
}
|
|
const gray = {
|
|
100: '#f4f6fa',
|
|
200: '#e9eef5',
|
|
300: '#bcc3ca',
|
|
400: '#818d9c',
|
|
500: '#4e5967',
|
|
700: '#2f3946',
|
|
800: '#1e2834',
|
|
900: '#14191e',
|
|
}
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['IBM Plex Sans', ...defaultTheme.fontFamily.sans],
|
|
mono: ['IBM Plex Mono', ...defaultTheme.fontFamily.mono],
|
|
},
|
|
extend: {
|
|
colors: {
|
|
accent,
|
|
gray,
|
|
},
|
|
},
|
|
},
|
|
plugins: [starlightPlugin()],
|
|
}
|