-
Notifications
You must be signed in to change notification settings - Fork 29.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[themes] Expose more styles for borders (editorBracketMatch.border) #46804
Comments
This covers the problem of how to expose border customizations. Color is just one aspect, but then there are other aspects:
|
@alexandrudima Amazing idea. This will reduce issues for other users because you can define these styles by yourself how you want it to look like. Also, I guess it's a good idea to let ppl decide how much So I believe something like this will be amazing (just brainstormed these):
|
I like
with all properties not listed use (solid, 1px, box) or the settings from the default/overwritten settings. |
How should it look assigning different border color, style and width for sides? Does this issue cover other borders like |
@usernamehw I believe this should assign only to one side, though it can support array in
|
So, different size/style/position/color would look like that? "editorBracketMatch.border": {
height: ['1px', '2px'],
style: ['solid', 'dotted'],
position: ['bottom', 'top'],
color: ['#fff', '#ddd']
} |
@usernamehw No, I see no point to use different border styles and colors for different positions. |
I also would suggest to keep things simple and support a fixed set of border styles with single colour and width. |
Glad to see this addresses my previous issue! This theme customization will be really welcome. |
Maybe it could work with https://code.visualstudio.com/api/references/vscode-api#DecorationRenderOptions ? |
Let's track in #19534 |
Hi, currently you can set
editorBracketMatch.border
from all angles. My suggestion is to add the ability to border - bottom, top, right or left.For e.g.
"editorBracketMatch.border": ["bottom", "#fff"]
I like, like it's in Atom where
editorBracketMatch.border
by default is to the bottom, I know we have HC themes and we need to keep it from all angles. But what about this idea?The text was updated successfully, but these errors were encountered: