Created
April 19, 2025 14:31
-
-
Save miraculixx/5e8b549e58806b88adf5c19054cc9d4f to your computer and use it in GitHub Desktop.
anytype custom.css
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
/* https://doc.anytype.io/anytype-docs/advanced/feature-list-by-platform/custom-css */ | |
/* underline markup links */ | |
a.markuplink { | |
text-decoration-line: underline; | |
} | |
/* nicer colors for selected text */ | |
.isSelectionSelected { | |
background-color: #3399ff; /* Light blue background */ | |
color: white; /* White text */ | |
} | |
::selection { | |
background-color: #3399ff; /* Light blue background */ | |
color: white; /* White text */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment