24 lines
615 B
JavaScript
24 lines
615 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"blue-night": "#1B2A4A",
|
|
"blue-mid": "#2d4a7a",
|
|
sage: "#6B8F71",
|
|
"sage-light": "#E8F0E9",
|
|
"bg-warm": "#FAFAF7",
|
|
"text-dark": "#2D2D2D",
|
|
"text-light": "#6B6B6B",
|
|
border: "#E5E5E0",
|
|
},
|
|
fontFamily: {
|
|
heading: ["Fraunces", "Georgia", "serif"],
|
|
body: ["Inter", "-apple-system", "BlinkMacSystemFont", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|