night-owl-vscode-theme icon indicating copy to clipboard operation
night-owl-vscode-theme copied to clipboard

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

Open matchai opened this issue 2 years ago • 1 comments

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

matchai avatar Mar 30 '22 21:03 matchai

add this to your settings

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

image

scratchmex avatar Jul 26 '22 12:07 scratchmex