fix tag highlighting for 'Night Owl' HTML mode

Closes #1047
main
Mike Fix 4 years ago
parent 51aadbe945
commit 85569b67d2
No known key found for this signature in database
GPG Key ID: 1D85E862314CA79F

@ -47,6 +47,9 @@ export default function GlobalHighlights({ highlights }) {
:global(.cm-attribute) { :global(.cm-attribute) {
color: ${highlights.attribute} !important; color: ${highlights.attribute} !important;
} }
:global(.cm-tag) {
color: ${highlights.tag} !important;
}
:global(.cm-s-dracula .CodeMirror-cursor) { :global(.cm-s-dracula .CodeMirror-cursor) {
border-left: solid 2px #159588 !important; border-left: solid 2px #159588 !important;

@ -290,6 +290,7 @@ export const THEMES = [
string: '#ecc48d', string: '#ecc48d',
comment: '#5c6370', comment: '#5c6370',
meta: '#7fdbca', meta: '#7fdbca',
tag: '#7fdbca',
}, },
}, },
{ {

Loading…
Cancel
Save