Created
November 8, 2022 06:32
-
-
Save alienlebarge/32351d59177c42bb725e8f5f19f3f8be to your computer and use it in GitHub Desktop.
Stylish custom style to override workflowy style
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
/** | |
* This style can be used in Stylish for Chrome or Cascadea for Safari | |
* Update it in Workflowy because Stylish do not sync | |
*/ | |
:root { | |
--background-color: #010808; | |
--background-color--light: rgba(28,27,27,1); | |
--text-color: #b3caca; | |
--text-color-highlight: #f9f4e2; | |
} | |
body { | |
font-family:"MD IO 0.5","MD IO 0.4", "Andale Mono", Menlo, monospace !important; | |
} | |
body, | |
.page, | |
.header, | |
.boardColumn, | |
.help-button, | |
.leftBar > div { | |
background: var(--background-color); | |
color: var(--text-color) !important; | |
} | |
i, | |
b { | |
color: var(--text-color-highlight) !important; | |
} | |
.boardCard { | |
background: var(--background-color--light); | |
} | |
.contentLink, | |
.contentTagText { | |
text-underline-offset: 0.107em !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment