Emerald Grove 🌲
Based on the fabulous Night Owl theme from Sarah Drasner.

A Visual Studio Code theme for those who love the forest. Fine-tuned for those of us who like to code in nature. Color choices have taken into consideration what is accessible to people with colorblindness and in low-light circumstances. Decisions were also based on meaningful contrast for reading comprehension and for optimal razzle dazzle. ✨
As of 1.0.0, there's a Verdant Dawn theme too! Color balanced from the Dark version for easy viewing in daylight. 🌅
About this theme, and some of the considerations made while creating it (as well as how to create it should you want to make your own): https://css-tricks.com/creating-a-vs-code-theme/
Emerald Grove

Verdant Dawn

Installation
- Install Visual Studio Code
- Launch Visual Studio Code
- Choose Extensions from menu
- Search for
emerald grove
- Click Install to install it
- Click Reload to reload the Code
- From the menu bar click: Code > Preferences > Color Theme > Emerald Grove
Disable Italics
If you wish to disable italics, there is now a no-italic theme available. You will have access to both, select Emerald Grove No Italics as your color theme.
"workbench.colorCustomizations": {
"[Emerald Grove]": {
"activityBar.background": "#000C1D",
"activityBar.border": "#102a44",
"editorGroup.border": "#102a44",
"sideBar.background": "#001122",
"sideBar.border": "#102a44",
"sideBar.foreground": "#8BADC1",
"editor.italic": true,
"editor.tokenColorCustomizations": {
"[Emerald Grove]": {
"textMateRules": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": {
"fontStyle": ""
}
}
]
}
}
},
"[Emerald Grove (No Italics)]": {
"activityBar.background": "#000C1D",
"activityBar.border": "#102a44",
"editorGroup.border": "#102a44",
"sideBar.background": "#001122",
"sideBar.border": "#102a44",
"sideBar.foreground": "#8BADC1",
"editor.italic": false,
"editor.tokenColorCustomizations": {
"[Emerald Grove (No Italics)]": {
"textMateRules": [
{
"scope": ["comment", "punctuation.definition.comment"],
"settings": {
"fontStyle": ""
}
}
]
}
}
}
},
Misc
This is my first foray into creating a theme, so if you see something amiss, please feel free to file an issue! I'm sure there are things I missed.