Gems Theme is a VSCode theme that is based on Material Theme with theming inspiration from Nord and Plastic Theme designed to be easy on the eye and easy to use.
-
With Quick Open :
ext install Mikaleb.gems-theme
-
Or : Open Extensions sidebar panel in VS Code (
View โ Extensions
) -
Search for
Gems Theme
- find the one by Mikaleb -
Click Install to install it
-
Code > Preferences > Color Theme > Gems
-
Recommended font : Fira Code
Gems-Theme is an open source project and we are very happy to accept community contributions. Please refer to Contributing to Gems-Theme page for more details.
If you run into a bug or miss a feature, please open an issue in this repository.
yarn
yarn build
By pressing F5 in VSCode you should be able to have a new window with the theme. If not, create the file .vscode/launch.json
with this :
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/test"
]
}
]
}
- white: #ffffff,
- black: #000000,
- red: #FF707E,
- orange: #FFBE82,
- yellow: #FFD072,
- green: #C9FF9A,
- cyan: #66D3E2,
- blue: #88C9FF,
- paleblue: #6BD2E0,
- purple: #EC97FF,
- brown: #F5B791,
- pink: #FFACBA,
- violet: #FFA3F3,
- lightgray: #d8dee9,
See the LICENSE file for licensing information as it pertains to files in this repository.