2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-06-30 14:41:01 -06:00

Added basic HTML tag syntax highlight styling

This commit is contained in:
danabrey 2015-10-21 11:09:44 +01:00
parent 1e3ddd01af
commit e79b5f14ed
3 changed files with 19 additions and 7 deletions

File diff suppressed because one or more lines are too long

12
dist/simplemde.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -268,6 +268,18 @@
padding: 5px;
}
.CodeMirror .CodeMirror-code .cm-tag {
color: #63a35c;
}
.CodeMirror .CodeMirror-code .cm-attribute {
color: #795da3;
}
.CodeMirror .CodeMirror-code .cm-string {
color: #183691;
}
.CodeMirror .CodeMirror-selected {
background: #d9d9d9;
}