We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7d83b commit 4f1bb74Copy full SHA for 4f1bb74
apps/vscode/src/lsp/client.ts
@@ -158,7 +158,7 @@ export async function activateLsp(
158
if (client) {
159
// Map VS Code theme kinds to light/dark. HighContrast themes are treated as dark
160
// since they typically have light text on dark backgrounds
161
- const kind = window.activeColorTheme.kind === ColorThemeKind.Light ? "light" : "dark";
+ const kind = (window.activeColorTheme.kind === ColorThemeKind.Light || window.activeColorTheme.kind === ColorThemeKind.HighContrastLight) ? "light" : "dark";
162
client.sendNotification("quarto/didChangeActiveColorTheme", { kind });
163
}
164
};
0 commit comments