All checks were successful
Frontend CI / build (push) Successful in 1m5s
### Description - Enhance typography and color consistency in PostPreview and PostContentPage - Add tailwind configuration for custom typography styles ### Package Changes _No response_ ### Screenshots _No response_ ### Reference Resolves #87 ### Checklist - [x] A milestone is set - [x] The related issuse has been linked to this branch Reviewed-on: #88 Co-authored-by: SquidSpirit <squid@squidspirit.com> Co-committed-by: SquidSpirit <squid@squidspirit.com>
19 lines
418 B
JavaScript
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)'
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
};
|