Last active
September 20, 2023 15:01
-
-
Save somidad/a523a00192efefca84e163c99ce57d23 to your computer and use it in GitHub Desktop.
Logseq: Make page ref, block ref, tag and marker look more distinct
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
/* Yello hyperlink on green background */ | |
.page-ref { | |
color: #E0D772; | |
} | |
/* Yellow underline on green background */ | |
.block-ref { | |
border-bottom-color: #E0D772; | |
} | |
/* Yellow tag on green background */ | |
a.tag { | |
color: #E0D772; | |
} | |
/* Yellow marker switch (e.g. TODO) on green background */ | |
.marker-switch { | |
color: #E0D772; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment