vscode-highlight
vscode-highlight copied to clipboard
Dark vs light theme support
Assume that
"highlight.regexes": {
"(//TODO)(:)": [
{ "color": "yellow" },
{ "color": "white" }
]
}
works good for dark themes, but I want to temporarily use a light theme. Then yellow and white would no longer be a good choice, but rather
"highlight.regexes": {
"(//TODO)(:)": [
{ "color": "orange" },
{ "color": "black" }
]
}
Could there be a way to specify
"highlight.regexes.dark": { <--------
"(//TODO)(:)": [
{ "color": "yellow" },
{ "color": "white" }
]
}
and
"highlight.regexes.light": { <--------
"(//TODO)(:)": [
{ "color": "orange" }
{ "color": "black" }
]
}
or more concise
"highlight.regexes": {
"(//TODO)(:)": {
"dark": [
{ "color": "yellow" },
{ "color": "white" }
],
"light": [
{ "color": "orange" },
{ "color": "black" }
]
}
}
in order to support this?
related https://github.com/fabiospampinato/vscode-highlight/pull/62