Merge pull request #292592 from microsoft/mrleemurray/outside-plum-bovid

Add markup token colors for dark and light themes
This commit is contained in:
Lee Murray 2026-02-03 17:02:46 +00:00 committed by GitHub
commit 1ca3a1c1e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 156 additions and 0 deletions

View File

@ -540,6 +540,84 @@
"settings": {
"foreground": "#A8CAAD"
}
},
{
"name": "Markup Heading",
"scope": "markup.heading",
"settings": {
"foreground": "#64b0df",
"fontStyle": "bold"
}
},
{
"name": "Markup Bold",
"scope": "markup.bold",
"settings": {
"foreground": "#C48081",
"fontStyle": "bold"
}
},
{
"name": "Markup Italic",
"scope": "markup.italic",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markup Strikethrough",
"scope": "markup.strikethrough",
"settings": {
"fontStyle": "strikethrough"
}
},
{
"name": "Markup Underline",
"scope": "markup.underline",
"settings": {
"fontStyle": "underline"
}
},
{
"name": "Markup Quote",
"scope": "markup.quote",
"settings": {
"foreground": "#C184C6"
}
},
{
"name": "Markup List",
"scope": "markup.list",
"settings": {
"foreground": "#48C9C4"
}
},
{
"name": "Markup Inline Raw",
"scope": "markup.inline.raw",
"settings": {
"foreground": "#D1D6AE"
}
},
{
"name": "Markup Raw/Fenced Code Block",
"scope": [
"markup.raw",
"markup.fenced_code"
],
"settings": {
"foreground": "#888888"
}
},
{
"name": "Markup Link",
"scope": [
"meta.link",
"markup.underline.link"
],
"settings": {
"foreground": "#48A0C7"
}
}
],
"semanticHighlighting": true,

View File

@ -546,6 +546,84 @@
"settings": {
"foreground": "#2B9A69"
}
},
{
"name": "Markup Heading",
"scope": "markup.heading",
"settings": {
"foreground": "#5460C1",
"fontStyle": "bold"
}
},
{
"name": "Markup Bold",
"scope": "markup.bold",
"settings": {
"foreground": "#B86855",
"fontStyle": "bold"
}
},
{
"name": "Markup Italic",
"scope": "markup.italic",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Markup Strikethrough",
"scope": "markup.strikethrough",
"settings": {
"fontStyle": "strikethrough"
}
},
{
"name": "Markup Underline",
"scope": "markup.underline",
"settings": {
"fontStyle": "underline"
}
},
{
"name": "Markup Quote",
"scope": "markup.quote",
"settings": {
"foreground": "#8F41AD"
}
},
{
"name": "Markup List",
"scope": "markup.list",
"settings": {
"foreground": "#46969A"
}
},
{
"name": "Markup Inline Raw",
"scope": "markup.inline.raw",
"settings": {
"foreground": "#98863B"
}
},
{
"name": "Markup Raw/Fenced Code Block",
"scope": [
"markup.raw",
"markup.fenced_code"
],
"settings": {
"foreground": "#666666"
}
},
{
"name": "Markup Link",
"scope": [
"meta.link",
"markup.underline.link"
],
"settings": {
"foreground": "#0069CC"
}
}
],
"semanticHighlighting": true,