This theme's main goal is to provide a dark, readable & clean experience into your favorite code editor.
In order to stay soft to the eyes, it uses a desaturated color palette and uses only bold characters for function names as they are what describes your code the better.
Visit Night Shift website for more info.
You can find the light version of this theme here.
You'll find an iTerm2 port of this theme here.
A Warp Terminal port is available here.
A Google Chrome port is available here.
Launch VS Code Quick Open (⌘+P), paste the following command, and press enter.
ext install jean.desaturated
Or install this theme from the extension panel : search for "Night Shift Theme".
You can find this theme in the Visual Studio Code Marketplace.
If you want to get rid of all bold or italic text, you can add these lines to your settings.json
file :
"editor.tokenColorCustomizations": {
"textMateRules": [
// Remove bold
{
"name": "Function names",
"scope": "entity.name.function",
"settings": {
"fontStyle": "",
}
},
// Remove italics
{
"name": "Comments",
"scope": "comment",
"settings": {
"fontStyle": "",
}
}
]
},
If you want to override anything else, you can see all the style definitions here in the github repo.
Javascript, Typescript, HTML/CSS, Python & PHP are for now the only fully tested and supported languages. Other languages may be partially supported too.
Do not hesitate to contact me if you have some suggestions of improvements or language addition requests.