Skip to content

Instantly share code, notes, and snippets.

@rdebeasi
Last active January 8, 2025 19:38
Show Gist options
  • Save rdebeasi/adc961c2d20d7163d7cf7fe19fa5eb1e to your computer and use it in GitHub Desktop.
Save rdebeasi/adc961c2d20d7163d7cf7fe19fa5eb1e to your computer and use it in GitHub Desktop.
Custom styles for Zettlr
/*
* 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