feat: Make branding adapt to our colors

This commit is contained in:
Jesse Wierzbinski 2024-07-22 12:35:55 +02:00
parent 27631b618e
commit 02695bc22c
No known key found for this signature in database
13 changed files with 38 additions and 33 deletions

View file

@ -6,9 +6,9 @@ export default function typographyStyles({ theme }: PluginUtils) {
css: {
"--tw-prose-body": theme("colors.zinc.700"),
"--tw-prose-headings": theme("colors.zinc.900"),
"--tw-prose-links": theme("colors.emerald.500"),
"--tw-prose-links-hover": theme("colors.emerald.600"),
"--tw-prose-links-underline": theme("colors.emerald.500 / 0.3"),
"--tw-prose-links": theme("colors.brand.500"),
"--tw-prose-links-hover": theme("colors.brand.600"),
"--tw-prose-links-underline": theme("colors.brand.500 / 0.3"),
"--tw-prose-bold": theme("colors.zinc.900"),
"--tw-prose-counters": theme("colors.zinc.500"),
"--tw-prose-bullets": theme("colors.zinc.300"),
@ -24,10 +24,10 @@ export default function typographyStyles({ theme }: PluginUtils) {
"--tw-prose-invert-body": theme("colors.zinc.400"),
"--tw-prose-invert-headings": theme("colors.white"),
"--tw-prose-invert-links": theme("colors.emerald.400"),
"--tw-prose-invert-links-hover": theme("colors.emerald.500"),
"--tw-prose-invert-links": theme("colors.brand.400"),
"--tw-prose-invert-links-hover": theme("colors.brand.500"),
"--tw-prose-invert-links-underline": theme(
"colors.emerald.500 / 0.3",
"colors.brand.500 / 0.3",
),
"--tw-prose-invert-bold": theme("colors.white"),
"--tw-prose-invert-counters": theme("colors.zinc.400"),