-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ying Zhong edited this page Jul 14, 2025
·
2 revisions
In settings.json, you can define a settings node named extension.markeditTheming
to override colors, for example:
{
"extension.markeditTheming": {
"enabledMode": "both",
"lightTheme": {
"editor": {
"textColor": "red"
}
},
"darkTheme": {}
}
}
-
enabledMode
: Enabled color scheme (both
,light
,dark
, ornone
to disable). -
lightTheme
: Custom colors used in the light mode, see colors.d.ts for the full spec. -
darkTheme
: Custom colors used in the dark mode, see colors.d.ts for the full spec.