fix: use correct themes for tailwind typography

This commit is contained in:
tonyaellie
2025-05-23 17:22:08 +00:00
parent 0c6201f4c6
commit cd43c5bd30

View File

@@ -122,6 +122,25 @@ module.exports = {
"accordion-up": "accordion-up 0.2s ease-out",
"collapsible-down": "collapsible-down 0.2s ease-in-out",
"collapsible-up": "collapsible-up 0.2s ease-in-out",
},
typography: {
DEFAULT: {
css: {
color: 'hsl(var(--foreground))',
a: {
color: 'hsl(var(--primary))',
'&:hover': {
color: 'hsl(var(--primary) / 0.8)',
},
},
h1: {
color: 'hsl(var(--foreground))',
},
h2: {
color: 'hsl(var(--foreground))',
},
},
},
},
},
},