diff --git a/app/blog/[slug]/page.tsx b/app/blog/[slug]/page.tsx index e9189c0..4b2c1c0 100644 --- a/app/blog/[slug]/page.tsx +++ b/app/blog/[slug]/page.tsx @@ -40,7 +40,7 @@ export default function BlogPostPage({ params }: Props) { -
+

{post.title}

{post.feature_image && ( // feature_image is stored as "../assets/xyz", serve from "/assets/xyz" diff --git a/tailwind.config.js b/tailwind.config.js index f9de1f5..2c679d7 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -41,13 +41,19 @@ module.exports = { }, dark: { css: { - color: theme('colors.slate.100'), + color: theme('colors.slate.50'), a: { color: theme('colors.blue.400'), '&:hover': { color: theme('colors.blue.300') } }, + h1: { + color: theme('colors.slate.50') + }, + h2: { + color: theme('colors.slate.50') + }, blockquote: { borderLeftColor: theme('colors.blue.500'), backgroundColor: theme('colors.slate.900')