blog/frontend/tailwind.config.js
SquidSpirit 0941e9246a
All checks were successful
Frontend CI / build (push) Successful in 1m4s
PR Title Check / pr-title-check (pull_request) Successful in 16s
BLOG-87 fix: enhance typography and color consistency in PostPreview and PostContentPage & feat: add tailwind configuration for custom typography styles
2025-07-28 00:18:58 +08:00

19 lines
418 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
extend: {
typography: () => ({
gray: {
css: {
'--tw-prose-body': 'var(--color-gray-700)',
'--tw-prose-headings': 'var(--color-gray-800)',
'--tw-prose-links': 'var(--color-gray-800)',
'--tw-prose-bold': 'var(--color-gray-800)',
'--tw-prose-quotes': 'var(--color-gray-800)'
}
}
})
}
}
};