mirror of
https://github.com/langgenius/dify.git
synced 2026-05-09 12:02:09 -04:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
18 lines
419 B
TypeScript
18 lines
419 B
TypeScript
/*
|
|
* `@tailwindcss/typography` configured with Dify's prose color tokens.
|
|
* Injects `theme.typography` for v4 CSS-first via plugin `config` merge.
|
|
*/
|
|
import typographyPlugin from '@tailwindcss/typography'
|
|
import typographyConfig from './typography-config.js'
|
|
|
|
const created = typographyPlugin()
|
|
|
|
export default {
|
|
handler: created.handler,
|
|
config: {
|
|
theme: {
|
|
typography: typographyConfig,
|
|
},
|
|
},
|
|
}
|