fisheva / Eva-Theme

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

file/folder name colors #66

Closed laralove143 closed 2 years ago

laralove143 commented 2 years ago

im in love with this! but theres this one thing that puts me off a bit, the editor colors are all tasty and pastel, but then the file/folder name colors, the green, orange (for warnings), and red (for errors), are like um idk lifeless i guess- is it maybe overlooked or do you have plans to change it?

fisheva commented 2 years ago

Which are you talking about? Eva Theme for Visual Studio or Eva Theme for VSCode?

Eva Theme for Visual Studio has not been set there yet, and it will be synchronized with the colors of Eva Theme for VSCode in the future.

If you are talking about Eva Theme for VSCode. I chose these three colors carefully, there is no plan to change for the time being. I am satisfied with the current warning and error colors. I think the colors match the warning meaning they should represent.

Do you mean you want these three colors to be more vivid? Have any good advice? It is best to be accurate to the specific color value. You can debug and override the theme settings in the VSCode settings file. Here are their API and current colors.

"workbench.colorCustomizations": {

    //Eva Light
    "gitDecoration.untrackedResourceForeground": "#3EC141",
    "gitDecoration.addedResourceForeground": "#83C654",
    "list.warningForeground": "#FF6D12",
    "list.errorForeground": "#EC0000",

    //Eva Dark
    "gitDecoration.untrackedResourceForeground": "#7BBE54",
    "gitDecoration.addedResourceForeground": "#98C379",
    "list.warningForeground": "#FF8A4C",
    "list.errorForeground": "#E51400",
}