https://github.com/subframe7536/vscode-theme-maple
A colorful VSCode theme, support light or dark mode, with medium brightness and low saturation.
https://github.com/subframe7536/vscode-theme-maple
theme vscode vscode-theme
Last synced: about 1 year ago
JSON representation
A colorful VSCode theme, support light or dark mode, with medium brightness and low saturation.
- Host: GitHub
- URL: https://github.com/subframe7536/vscode-theme-maple
- Owner: subframe7536
- License: mit
- Created: 2023-07-14T13:41:52.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-07T06:57:34.000Z (about 1 year ago)
- Last Synced: 2025-04-09T17:02:27.931Z (about 1 year ago)
- Topics: theme, vscode, vscode-theme
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=subframe7536.theme-maple
- Size: 5.54 MB
- Stars: 123
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Maple Dark Theme for VSCode
A colorful VSCode theme, support light or dark mode, with medium brightness and low saturation.


- Font: [Maple Mono](https://github.com/subframe7536/maple-font)
- Icon: [Catppuccin Icons for VSCode](https://github.com/catppuccin/vscode-icons)
- UI: [Custom UI Style](https://github.com/subframe7536/vscode-custom-ui-style)
- Terminal: PowerShell + [Starship](https://starship.rs/)
### Italic Style On Keywords
If you just want the italic style on keywords like the theme do, just add this snippet into your `settings.json`
```jsonc
{
// existing settings...
"editor.semanticTokenColorCustomizations": {
"rules": {
"interface": {
"italic": true
},
"selfParameter": {
"italic": true
},
"keyword": {
"italic": true
},
"*.static": {
"italic": true
}
}
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"constant.language.undefined",
"constant.language.null",
"constant.language.nullptr",
"meta.type keyword.operator.expression.typeof",
"meta.type keyword.operator.expression.keyof",
"keyword.control",
"keyword.function",
"keyword.operator.borrow.and.rust",
"storage.type",
"storage.modifier",
"variable.language.this",
"markup.italic"
],
"settings": {
"fontStyle": "italic"
}
}
]
}
}
```
## Credit
- Design inspiration: [moegi](https://github.com/moegi-design/vscode-theme)
- Project structure: [vitesse](https://github.com/antfu/vscode-theme-vitesse)
- Type check: [dracula](https://github.com/dracula/visual-studio-code)
## License
MIT