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..14371d00 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 = "#d1d7e0"; + return dimmedColors; default: throw new Error(`Colors are missing for value: ${theme}`);