Skip to content

Commit

Permalink
change color (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidely authored Feb 24, 2025
1 parent 1a67b26 commit df4733c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions resources/styles/codemirror.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ div.wikiEditor-ui-toolbar .group .tool-select .options {
background-color: var( --clr-surface-3, #e8f2ff );
}

.theme--dark .CodeMirror-activeline-background {
background-color: #3a3a3a;
}

.CodeMirror-linenumber {
cursor: pointer;
color: var( --clr-on-surface, #999999 );
Expand All @@ -105,10 +109,18 @@ div.wikiEditor-ui-toolbar .group .tool-select .options {
background: var( --clr-surface-3, #d9d9d9 );
}

.theme--dark .CodeMirror-selected {
background: #3a3a3a;
}

.CodeMirror-focused .CodeMirror-selected {
background: var( --clr-surface-3, #d7d4f0 );
}

.theme--dark .CodeMirror-focused .CodeMirror-selected {
background: #3a3a3a;
}

.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
Expand Down

0 comments on commit df4733c

Please sign in to comment.