fisheva / Eva-Theme

A comfortable and semantic theme.
https://marketplace.visualstudio.com/items?itemName=fisheva.eva-theme
MIT License
451 stars 39 forks source link

Add activityBar margin highlight as many themes have #87

Closed sharpchen closed 1 year ago

sharpchen commented 1 year ago

Snipaste_2022-11-22_21-26-04 Just like this icon, a little light in the margin of where activityBar is docked. In both eva light and eva dark, it's a little hard to tell which activity page is currently displayed without margin hightlight. And I didn't find corresponding property in settings.json to override this feature. If there is one, please let me know!

fisheva commented 1 year ago

Personally, I don't like to set the active button too bright. I think if the brightness is too high, it will attract too much attention. You can custom it's color in settings.json:

"workbench.colorCustomizations": {
        "activityBar.foreground": "#96A4CD",
}
sharpchen commented 1 year ago

Personally, I don't like to set the active button too bright. I think if the brightness is too high, it will attract too much attention. You can custom it's color in settings.json:

"workbench.colorCustomizations": {
        "activityBar.foreground": "#96A4CD",
}

I misexpressed myself. What I actually want to customize is "activityBar.activeBorder". Anyway I've found the right property to modify. Thank you! And yes I appreciate and respect your design concept. "activityBar.foreground" is currently pretty and keeping it as it is is just great.

  "workbench.colorCustomizations": {
        "activityBar.activeBorder": "#96A4CD"
    }