From d7a4e4fde672a003316a5ee63308f0bee7f62219 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 27 Sep 2023 12:03:59 -0700 Subject: [PATCH] refactor(web): tailwind prose styles --- web/tailwind.config.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/web/tailwind.config.ts b/web/tailwind.config.ts index 996a19327..02583b96f 100644 --- a/web/tailwind.config.ts +++ b/web/tailwind.config.ts @@ -111,10 +111,17 @@ export default >{ DEFAULT: { css: { color: theme('colors.beta'), + a: { + color: theme('colors.orange'), + textDecoration: 'underline', + '&:hover': { + color: theme('colors.orange-dark'), + }, + }, '--tw-prose-body': theme('colors.beta'), '--tw-prose-headings': theme('colors.beta'), '--tw-prose-lead': theme('colors.beta'), - '--tw-prose-links': theme('colors.beta'), + '--tw-prose-links': theme('colors.orange'), '--tw-prose-bold': theme('colors.beta'), '--tw-prose-counters': theme('colors.beta'), '--tw-prose-bullets': theme('colors.beta'), @@ -130,7 +137,7 @@ export default >{ '--tw-prose-invert-body': theme('colors.alpha'), '--tw-prose-invert-headings': theme('colors.alpha'), '--tw-prose-invert-lead': theme('colors.alpha'), - '--tw-prose-invert-links': theme('colors.alpha'), + '--tw-prose-invert-links': theme('colors.orange'), '--tw-prose-invert-bold': theme('colors.alpha'), '--tw-prose-invert-counters': theme('colors.alpha'), '--tw-prose-invert-bullets': theme('colors.alpha'),