From 7811e37aed977525065da7624012241fe5ef3d57 Mon Sep 17 00:00:00 2001 From: Damian Brady Date: Thu, 3 Oct 2024 10:03:59 +1000 Subject: [PATCH 1/3] Added background color for text preformat --- src/theme.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/theme.js b/src/theme.js index 20a3ca3..d54797f 100644 --- a/src/theme.js +++ b/src/theme.js @@ -52,6 +52,7 @@ function getTheme({ theme, name }) { "textBlockQuote.border" : color.border.default, "textCodeBlock.background" : color.neutral.muted, "textPreformat.foreground" : color.fg.muted, + "textPreformat.background" : color.bg.muted, "textSeparator.foreground" : color.border.muted, "icon.foreground" : color.fg.muted, From f7a67d67fc2302a0ec36ddfb7bdd57142f4575e8 Mon Sep 17 00:00:00 2001 From: Damian Brady Date: Thu, 3 Oct 2024 10:31:58 +1000 Subject: [PATCH 2/3] Updated to color neutral muted as bg doesn't exist --- src/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.js b/src/theme.js index d54797f..d8cde46 100644 --- a/src/theme.js +++ b/src/theme.js @@ -52,7 +52,7 @@ function getTheme({ theme, name }) { "textBlockQuote.border" : color.border.default, "textCodeBlock.background" : color.neutral.muted, "textPreformat.foreground" : color.fg.muted, - "textPreformat.background" : color.bg.muted, + "textPreformat.background" : color.neutral.muted, "textSeparator.foreground" : color.border.muted, "icon.foreground" : color.fg.muted, From b7991c42030126bdaf68f6cdeaefcee5a8d8d876 Mon Sep 17 00:00:00 2001 From: simurai Date: Thu, 3 Oct 2024 11:06:07 +0900 Subject: [PATCH 3/3] Create orange-readers-carry.md --- .changeset/orange-readers-carry.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/orange-readers-carry.md diff --git a/.changeset/orange-readers-carry.md b/.changeset/orange-readers-carry.md new file mode 100644 index 0000000..a38ce69 --- /dev/null +++ b/.changeset/orange-readers-carry.md @@ -0,0 +1,5 @@ +--- +"github-vscode-theme": patch +--- + +Fix inline code block contrast for High Contrast theme.