Skip to content
Snippets Groups Projects
Commit fec63b9b authored by Chad Jolly's avatar Chad Jolly Committed by Marijn Haverbeke
Browse files

[material theme] Fix cm-error style

it seems `.cm-error` lost some specificity in [this commit](https://github.com/codemirror/CodeMirror/commit/a7d443ec82c1806d24e25ad8014a4d8651409320#diff-33646e9ee4d04eedb98a991a636c2302L35) that causes the error state to have same color as the tag.
parent 38131c44
No related branches found
No related tags found
No related merge requests found
......@@ -32,10 +32,6 @@
.cm-s-material .cm-atom { color: #F77669; }
.cm-s-material .cm-number { color: #F77669; }
.cm-s-material .cm-def { color: rgba(233, 237, 237, 1); }
.cm-s-material .cm-error {
color: rgba(255, 255, 255, 1.0);
background-color: #EC5F67;
}
.cm-s-material .cm-string { color: #C3E88D; }
.cm-s-material .cm-string-2 { color: #80CBC4; }
.cm-s-material .cm-comment { color: #546E7A; }
......@@ -47,6 +43,10 @@
.cm-s-material .cm-qualifier { color: #DECB6B; }
.cm-s-material .cm-variable-3 { color: #DECB6B; }
.cm-s-material .cm-tag { color: rgba(255, 83, 112, 1); }
.cm-s-material .cm-error {
color: rgba(255, 255, 255, 1.0);
background-color: #EC5F67;
}
.cm-s-material .CodeMirror-matchingbracket {
text-decoration: underline;
color: white !important;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment