fix highlighting colors of text editor in wiki and issues tab

This commit is contained in:
DrMaxNix 2023-03-06 20:02:15 +01:00
parent 7a47dec4dd
commit 34a669c491
1 changed files with 23 additions and 0 deletions

View File

@ -135,6 +135,29 @@
.cm-s-easymde .cm-tag {
color: var(--onedark-red);
}
.cm-s-easymde .cm-attribute {
color: var(--onedark-blue);
}
.cm-s-easymde .cm-string {
color: var(--onedark-green);
}
.cm-s-easymde .cm-link {
color: var(--onedark-green);
}
.cm-s-easymde .cm-url {
color: var(--onedark-gray);
}
.cm-s-easymde .cm-quote {
color: var(--onedark-gray);
}
:root {
--is-dark-theme: true;
--color-primary: var(--onedark-green-variant-light);