We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it'd be nice if shadcn applied the theme variables to the tw typography variables as well for easier integration by default.
essentially shadcn would generate prose variables using shadcn variables
/** @type {import('tailwindcss').Config} */ module.exports = { theme: { extend: { typography: () => ({ pink: { css: { '--tw-prose-body': 'var(--color-pink-800)', '--tw-prose-headings': 'var(--color-pink-900)', '--tw-prose-lead': 'var(--color-pink-700)', '--tw-prose-links': 'var(--color-pink-900)', '--tw-prose-bold': 'var(--color-pink-900)', '--tw-prose-counters': 'var(--color-pink-600)', '--tw-prose-bullets': 'var(--color-pink-400)', '--tw-prose-hr': 'var(--color-pink-300)', '--tw-prose-quotes': 'var(--color-pink-900)', '--tw-prose-quote-borders': 'var(--color-pink-300)', '--tw-prose-captions': 'var(--color-pink-700)', '--tw-prose-code': 'var(--color-pink-900)', '--tw-prose-pre-code': 'var(--color-pink-100)', '--tw-prose-pre-bg': 'var(--color-pink-900)', '--tw-prose-th-borders': 'var(--color-pink-300)', '--tw-prose-td-borders': 'var(--color-pink-200)', '--tw-prose-invert-body': 'var(--color-pink-200)', '--tw-prose-invert-headings': 'var(--color-white)', '--tw-prose-invert-lead': 'var(--color-pink-300)', '--tw-prose-invert-links': 'var(--color-white)', '--tw-prose-invert-bold': 'var(--color-white)', '--tw-prose-invert-counters': 'var(--color-pink-400)', '--tw-prose-invert-bullets': 'var(--color-pink-600)', '--tw-prose-invert-hr': 'var(--color-pink-700)', '--tw-prose-invert-quotes': 'var(--color-pink-100)', '--tw-prose-invert-quote-borders': 'var(--color-pink-700)', '--tw-prose-invert-captions': 'var(--color-pink-400)', '--tw-prose-invert-code': 'var(--color-white)', '--tw-prose-invert-pre-code': 'var(--color-pink-300)', '--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)', '--tw-prose-invert-th-borders': 'var(--color-pink-600)', '--tw-prose-invert-td-borders': 'var(--color-pink-700)', }, }, }), }, }, }
No response
https://github.com/tailwindlabs/tailwindcss-typography?tab=readme-ov-file#adding-custom-color-themes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature description
it'd be nice if shadcn applied the theme variables to the tw typography variables as well for easier integration by default.
essentially shadcn would generate prose variables using shadcn variables
Affected component/components
No response
Additional Context
https://github.com/tailwindlabs/tailwindcss-typography?tab=readme-ov-file#adding-custom-color-themes
Before submitting
The text was updated successfully, but these errors were encountered: