-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
39 lines (37 loc) · 1.1 KB
/
tailwind.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import starlightPlugin from "@astrojs/starlight-tailwind";
// Generated color palettes
// See: https://starlight.astro.build/guides/css-and-tailwind/#color-theme-editor
const accent = {
200: "#92d1fe",
600: "#0073aa",
900: "#003653",
950: "#00273d",
};
const gray = {
100: "#f3f7f9",
200: "#e7eff2",
300: "#bac4c8",
400: "#7b8f96",
500: "#495c62",
700: "#2a3b41",
800: "#182a2f",
900: "#121a1c",
};
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: { accent, gray },
// Some fonts are added as source dependencies: https://fontsource.org/
// See fonts configured in astro.config.mjs
fontFamily: {
// Starlight uses a system font stack by default.
sans: ['"Noto Sans Variable"'],
// Starlight uses system monospace fonts by default.
mono: ['"JetBrains Mono Variable"'],
},
},
},
plugins: [starlightPlugin()],
};