The preview above shows the Horizon theme with the Roboto Mono font. Horizon also includes italic and bold variants.
Installation
- Open the Extensions sidebar in VS Code
- Search for
Horizon Theme
- Click Install
- Open the Command Palette with
Ctrl+Shift+P
or⇧⌘P
- Select Preferences: Color Theme and choose a Horizon variant.
- Enjoy!
🎉 Also, check out some of the personalization options below...
Visit the Horizon Homepage for some nice previews :)
Personalization
Tastes change all the time. Fortunately, VS Code makes it easy to customize just about every aspect of your editor. If you want to change something, open the Command Palette and select Preferences: Open Settings (JSON). Here, you can override VS Code's defaults or Horizon's colors. Check out some of the personalization options below to customize Horizon to suit your taste.
For more info on theming, visit the Theme Authoring Guide and Theme Color Reference.
Sidebar Contrast
"workbench.colorCustomizations": {
"activityBar.background": "#1E2028",
"activityBar.border": "#1E2028",
"sideBar.background": "#1E2028",
"sideBar.border": "#1C1E26"
}
Italics
The normal theme only uses italics in a few places: comments, parameters, and some special keywords (e.g. this
). If you would prefer no italics at all, you can configure this in your settings...
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "No italics",
"scope": ["comment", "variable.language", "variable.parameter"],
"settings": {
"fontStyle": ""
}
}
]
}
<>
Tag Brackets For gray rather than red brackets around HTML tags...
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "HTML tag brackets",
"scope": ["punctuation.definition.tag"],
"settings": {
"foreground": "#BBBBBB"
}
}
]
}
Contributing
Code of Conduct
Always try your best to make a positive impact on this project and its community. By participating, you are expected to uphold the Code of Conduct.
Contributing Guide
Read the contributing guide to learn about how you can report issues and contribute to changes.
Color Reference
Syntax Colors
Note: All syntax colors have 90% opacity so that they're easier on the eyes :)
Terminal Colors
Color | Normal | Bright |
---|---|---|
Blue | #26BBD9 |
#3FC4DE |
Cyan | #59E1E3 |
#6BE4E6 |
Green | #29D398 |
#3FDAA4 |
Magenta | #EE64AC |
#F075B5 |
Red | #E95678 |
#EC6A88 |
Yellow | #FAB795 |
#FBC3A7 |