Zygomatic Themes
Repository
Getting Started
You can install this theme through Visual Studio Code Marketplace
Installtion
- Open Extensions Tab
- On Mac -
CMD + SHIFT + X
- On Windows -
CTRL + SHIFT + X
- Search Zygomatic
- Click Install
Suggested Extension
- Bracket Pair Colorizer 2
- Material Icon Theme
- Better Comments
Activation
- Open Command Pallete
- On Mac -
CMD + SHIFT + P
- On Windows -
CMD + SHIFT + P
- Choose -
Preferences: Color Scheme
- Select your favourite theme
Override theme colors
Overriding Colours Documentation
Color Scheme override
Example (Syntax Colours without textMate Rules)
"editor.tokenColorCustomizations": {
"[theme-name]": {
"comments": "#229977"
}
},
Example (Syntax Colours using textMate Rules)
"editor.tokenColorCustomizations": {
"[theme-name]": {
"textMateRules": [
{
"name": "Variables",
"scope": ["variable", "string constant.other.placeholder"],
"settings": {
"foreground": "#EEFFFF"
}
},
]
},
},
"workbench.colorCustomizations": {
"[theme-name]": {
"activityBar.activeBorder": "#ff33ff",
"activityBar.background": "#111111",
"activityBar.border": "#333333",
"activityBar.dropBackground": "#ff0033",
"activityBar.foreground": "#ffffff",
"activityBar.inactiveForeground": "#00ffbd",
"activityBarBadge.background": "#ff0000",
"activityBarBadge.foreground": "#000000",
}
},