From 5ab19901a498f1954af0e7f7dd7d4075c03b5b74 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Fri, 11 Aug 2023 18:31:23 +0200 Subject: [PATCH] fix: prominent button foreground Closes #1266 --- scripts/generator/color-set.ts | 2 +- scripts/generator/settings/specific/ocean-hc.ts | 2 +- scripts/generator/settings/specific/ocean.ts | 2 +- scripts/generator/settings/specific/palenight-hc.ts | 2 +- scripts/generator/settings/specific/palenight.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/generator/color-set.ts b/scripts/generator/color-set.ts index 99146e4..9f8bd29 100644 --- a/scripts/generator/color-set.ts +++ b/scripts/generator/color-set.ts @@ -470,7 +470,7 @@ export const getColorSet = (theme: ThemeSetting): IColorSet => { */ 'extensionButton.prominentBackground': `${theme.scheme.base.green}90`, 'extensionButton.prominentHoverBackground': theme.scheme.base.green, - 'extensionButton.prominentForeground': theme.scheme.base.black, + 'extensionButton.prominentForeground': theme.scheme.foreground, /** * Peekview window style */ diff --git a/scripts/generator/settings/specific/ocean-hc.ts b/scripts/generator/settings/specific/ocean-hc.ts index 7b028c4..1fbeb0a 100644 --- a/scripts/generator/settings/specific/ocean-hc.ts +++ b/scripts/generator/settings/specific/ocean-hc.ts @@ -10,7 +10,7 @@ export default { comments: '#464B5D', caret: '#FFCC00', findHighlight: '#FFCC00', - foreground: '#A6ACCD', + foreground: '#babed8', focusBorder: '#FFFFFF', guides: '#3B3F51', lineNumbers: '#3B3F5180', diff --git a/scripts/generator/settings/specific/ocean.ts b/scripts/generator/settings/specific/ocean.ts index 19d5cba..f5a893d 100644 --- a/scripts/generator/settings/specific/ocean.ts +++ b/scripts/generator/settings/specific/ocean.ts @@ -10,7 +10,7 @@ export default { comments: '#464B5D', caret: '#FFCC00', findHighlight: '#FFCC00', - foreground: '#A6ACCD', + foreground: '#babed8', focusBorder: '#FFFFFF', guides: '#3B3F51', lineNumbers: '#3B3F5180', diff --git a/scripts/generator/settings/specific/palenight-hc.ts b/scripts/generator/settings/specific/palenight-hc.ts index bccc304..cec4117 100644 --- a/scripts/generator/settings/specific/palenight-hc.ts +++ b/scripts/generator/settings/specific/palenight-hc.ts @@ -12,7 +12,7 @@ export default { comments: '#676E95', caret: '#FFCC00', findHighlight: '#FFCC00', - foreground: '#A6ACCD', + foreground: '#babed8', focusBorder: '#FFFFFF', guides: '#4E5579', lineNumbers: '#3A3F58', diff --git a/scripts/generator/settings/specific/palenight.ts b/scripts/generator/settings/specific/palenight.ts index 5d6353b..c9f0be7 100644 --- a/scripts/generator/settings/specific/palenight.ts +++ b/scripts/generator/settings/specific/palenight.ts @@ -10,7 +10,7 @@ export default { comments: '#676E95', caret: '#FFCC00', findHighlight: '#FFCC00', - foreground: '#A6ACCD', + foreground: '#babed8', focusBorder: '#FFFFFF', guides: '#4E5579', lineNumbers: '#3A3F58',