sdras / night-owl-vscode-theme

🌌 NIGHT OWL: A VS Code dark theme for contrast for nighttime coding, 🦉 LIGHT OWL: a daytime light theme
https://aka.ms/nightowl
MIT License
2.82k stars 243 forks source link

Inlay hints in in Night Owl Light are hard to read with little contrast #309

Open matchai opened 2 years ago

matchai commented 2 years ago

While using Night Owl Light with a strongly typed language that uses inlay type hints, it is difficult to read the types inferred by VS Code. This can be seen by default in Rust, using rust-analyzer, and can also be seen in JavaScript or TypeScript, when any of the javascript.inlayHints or typescript.inlayHints options are enabled.

Screenshots

CleanShot 2022-03-30 at 16 43 25@2x

scratchmex commented 2 years ago

add this to your settings

"workbench.colorCustomizations": {
    "[Night Owl Light]": {
        "editorInlayHint.foreground": "#49546a",
        "editorInlayHint.background": "#b5d9d648",
    }
}

image