Last active
October 20, 2021 11:40
-
-
Save cdpath/1f7a19b76c893f191ba29135226990c5 to your computer and use it in GitHub Desktop.
CSS snippets for Obsidian
This file contains 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
/* 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