You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per conversation with @chrisdias and @seanmcbreen , here is a list of style settings I'd love to see exposed in VS Code.
Font settings for the VS Code Shell
The font-family for the shell itself, so we can change the title bar, sidebar, status bar, file tabs, and more. This would be the default for the shell and help match the code.
Expose border, and background for selectionHighlight and findMatch
/* This puts a thin yellow border around the found items like Sublime did it*/
.monaco-editor .findMatch,
.monaco-editor .selectionHighlight {
border-top:0.1px solid #f7ecb5;
border-bottom:0.1px solid #f7ecb5;
background: transparent;
}
Panel headers
Expose the color, font settings and letter spacing for the panel header titles. Letter spacing is sometimes needed as the titles' letters are very close and more difficult to read in some fonts.
Expose the margin, border, box shadow and background color for the git diff indicators. We currently have the background color, but the others are not. This would allow a cool effect like this:
@johnpapa Thanks for the suggestion and the nice screenshots and examples.
To be able to act on this we need separate issues. Each one has its own challenges and not all are within reach.
Font theming is #26128
Selection highlight and find borders is #30793
As per conversation with @chrisdias and @seanmcbreen , here is a list of style settings I'd love to see exposed in VS Code.
Font settings for the VS Code Shell
The font-family for the shell itself, so we can change the title bar, sidebar, status bar, file tabs, and more. This would be the default for the shell and help match the code.
Selection Highlight and Find Match
Expose border, and background for
selectionHighlight
andfindMatch
Panel headers
Expose the color, font settings and letter spacing for the panel header titles. Letter spacing is sometimes needed as the titles' letters are very close and more difficult to read in some fonts.
Window titles
Expose color, font settings, and letter spacing for window titles
File Tabs
Expose color, font settings, and letter spacing for tabs (file tabs)
Debug bar
Expose the border for the debug bar. I find this helps make it stand out, kinda like the border for peek view.
Git Diffs
Expose the margin, border, box shadow and background color for the git diff indicators. We currently have the background color, but the others are not. This would allow a cool effect like this:
The text was updated successfully, but these errors were encountered: