mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 03:08:53 -07:00
added Prettier, Tailwind, styling, branding, sitemap, tracking
This commit is contained in:
37
tailwind.config.mjs
Normal file
37
tailwind.config.mjs
Normal file
@@ -0,0 +1,37 @@
|
||||
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()],
|
||||
}
|
||||
Reference in New Issue
Block a user