tokyo-night / tokyo-night-vscode-theme

A clean, dark Visual Studio Code theme that celebrates the lights of Downtown Tokyo at night.
MIT License
1.74k stars 119 forks source link

Function parameters color inconsistent #47

Closed sivan-taranis closed 2 years ago

sivan-taranis commented 2 years ago

image

I find this situation sub-optimal. I think it might be more pleasant to much the functions parameter on definition/declaration and on function calls. While maybe modifying the color of 'None' just a little bit to make it distinguishable.

All in all this is my favorite theme in time! Thanks a lot for this creation.

enkia commented 2 years ago

It's optimal as far as what I prefer to see. First are function parameters and the other is the color of a constant value.

However, you can change the constant to something more obvious using:

"editor.tokenColorCustomizations": {
    "[Tokyo Night]": { // or "[Tokyo Night Storm]"
        "textMateRules": [{
            "scope":  "constant.numeric",
            "settings": {
                "foreground": "#9ECE6A" // preferred color
            }
        }]
    }
}

This will change the color of constants to green.

Apologies for the late reply!

sivan-taranis commented 2 years ago

I agree, TY for the response!