Last active
January 8, 2025 19:38
-
-
Save rdebeasi/adc961c2d20d7163d7cf7fe19fa5eb1e to your computer and use it in GitHub Desktop.
Custom styles for Zettlr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Overrides to make Zettlr's Berlin theme look a bit like GitHub's light default theme | |
* See https://github.com/Zettlr/Zettlr/tree/develop/source/common/modules/markdown-editor/theme | |
*/ | |
.cm-editor .cm-link { | |
/* Underlines for better accessibility */ | |
text-decoration: underline; | |
} | |
.cm-editor .cm-url, | |
.cm-editor .cm-link, | |
.cm-editor .cm-zkn-tag, | |
.cm-editor .cm-zkn-link { | |
color: #0969da; | |
} | |
.cm-editor .cm-code-mark { | |
color: #333; | |
} | |
.cm-editor .cm-cursor-primary { | |
background: #333; | |
} | |
.cm-editor.cm-focused .cm-scroller .cm-layer.cm-selectionLayer .cm-selectionBackground, ::selection { | |
/* Default macOS highlight color */ | |
background: #b3d7fe; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment