From a71ede95d4e70d8b3d9d1ede7a5649151e51c304 Mon Sep 17 00:00:00 2001 From: Cameron Date: Fri, 7 Nov 2025 14:50:58 -0800 Subject: [PATCH] Fix hard-to-read dark blue color in H2 headings (#77) Co-authored-by: Letta --- src/cli/components/colors.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/cli/components/colors.ts b/src/cli/components/colors.ts index 29a78db..9ff1138 100644 --- a/src/cli/components/colors.ts +++ b/src/cli/components/colors.ts @@ -68,19 +68,19 @@ export const colors = { header: brandColors.primaryAccent, }, - // Code and markdown elements + // Code and markdown elements (use terminal theme colors) code: { - inline: brandColors.statusSuccess, + inline: "green", }, link: { - text: brandColors.primaryAccent, - url: brandColors.primaryAccent, + text: "cyan", + url: "blue", }, heading: { - primary: brandColors.primaryAccent, - secondary: brandColors.blue, + primary: "cyan", + secondary: "blue", }, // Status indicators