From 41033471da93908e0acb3072ab12164344e18e11 Mon Sep 17 00:00:00 2001 From: Robert Ruse Date: Sat, 15 Aug 2026 14:43:07 +0000 Subject: [PATCH 1/2] fix: update the `GitHub Dark Dimmed` theme variant --- .changeset/rude-rings-guess.md | 5 +++++ src/colors.js | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .changeset/rude-rings-guess.md diff --git a/.changeset/rude-rings-guess.md b/.changeset/rude-rings-guess.md new file mode 100644 index 00000000..dd234597 --- /dev/null +++ b/.changeset/rude-rings-guess.md @@ -0,0 +1,5 @@ +--- +"github-vsggit code-theme": patch +--- + +Update the foreground color for the `GitHub Dark Dimmed` theme variant diff --git a/src/colors.js b/src/colors.js index d9b640c7..d5ad75a7 100644 --- a/src/colors.js +++ b/src/colors.js @@ -40,6 +40,9 @@ function getColors(theme) { case "dark_colorblind": return darkColorblindColors; case "dark_dimmed": + // Temp override until Primitives are updated + dimmedColors.fg.default = "#cbd1d6"; + return dimmedColors; default: throw new Error(`Colors are missing for value: ${theme}`); From d4559a135d05035d4cc4b30b68c6443cdb0e226b Mon Sep 17 00:00:00 2001 From: Robert Ruse Date: Mon, 17 Aug 2026 14:33:51 +0300 Subject: [PATCH 2/2] fix: use the white color from the Primer storybook soft dark theme --- src/colors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/colors.js b/src/colors.js index d5ad75a7..14371d00 100644 --- a/src/colors.js +++ b/src/colors.js @@ -41,7 +41,7 @@ function getColors(theme) { return darkColorblindColors; case "dark_dimmed": // Temp override until Primitives are updated - dimmedColors.fg.default = "#cbd1d6"; + dimmedColors.fg.default = "#d1d7e0"; return dimmedColors; default: