Fix #11263: Make Edit Configurations UI fully theme-aware in custom themes - #14692
Open
Prashant Kumar Rai (8prashant) wants to merge 1 commit into
Open
Fix #11263: Make Edit Configurations UI fully theme-aware in custom themes#14692Prashant Kumar Rai (8prashant) wants to merge 1 commit into
Prashant Kumar Rai (8prashant) wants to merge 1 commit into
Conversation
Copilot started reviewing on behalf of
Sean McManus (sean-mcmanus)
August 19, 2026 15:17
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Edit Configurations webview to better follow VS Code theme colors.
Changes:
- Adds reusable theme-token fallbacks.
- Themes editable selects, page backgrounds, code blocks, and links.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
405
to
+406
| .vscode-light a { | ||
| color: #4080D0 | ||
| color: var(--vscode-textLink-foreground) |
Comment on lines
+12
to
+14
| --cpptools-input-foreground: var(--vscode-settings-textInputForeground, var(--vscode-input-foreground)); | ||
| --cpptools-input-background: var(--vscode-settings-textInputBackground, var(--vscode-input-background)); | ||
| --cpptools-input-border: var(--vscode-settings-textInputBorder, var(--vscode-input-border)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes theming issues in the C/C++ Edit Configurations UI so it renders correctly with custom themes such as Bearded Theme.
Fixes #11263
Problem
The Edit Configurations UI had incomplete theming behavior:
Fix
Validation
Screenshots
Before
Top area:

Full page:

After
Top area:

Full page:
