Maple Dark Theme for VSCode
A colorful VSCode theme, support light or dark mode, with medium brightness and low saturation.

Features
- Underline style function parameters
- Italic style keywords
- Different color on types
- Alternative color for some keywords, like
export
/ null
/ !important
JetBrains IDE Color Scheme
https://github.com/subframe7536/vscode-theme-maple/releases/tag/v0.7.0
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
{
// 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.new",
"keyword.operator.borrow.and.rust",
"storage.type",
"storage.modifier",
"variable.language.this",
"markup.italic"
],
"settings": {
"fontStyle": "italic"
}
}
]
}
}
Credit
License
MIT