Skip to content

Instantly share code, notes, and snippets.

@cdpath
Last active October 20, 2021 11:40
Show Gist options
  • Save cdpath/1f7a19b76c893f191ba29135226990c5 to your computer and use it in GitHub Desktop.
Save cdpath/1f7a19b76c893f191ba29135226990c5 to your computer and use it in GitHub Desktop.
CSS snippets for Obsidian
/* Cusor */
.cm-fat-cursor .CodeMirror-cursor {
background-color: black;
opacity: 0.5;
width: 5px;
}
.cm-animate-fat-cursor {
background-color: black;
opacity: 0.5;
width: 5px;
}
/* Selection */
.theme-light {
--text-selection:rgba(0, 0, 0, 0.2);
}
*::selection{
color: rgb(255,255,255) !important;
background-color: rgb(0,0,0) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment