18 lines
377 B
JavaScript
18 lines
377 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{astro,html,md,mdx,js,jsx,ts,tsx,vue}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: "#0D47A1",
|
|
accent: "#00B8D9",
|
|
graybg: "#F3F4F6",
|
|
text: "#111827",
|
|
textMuted: "#374151"
|
|
},
|
|
borderRadius: { brand: "8px" }
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|