Skip to content

Instantly share code, notes, and snippets.

@alienlebarge
Created November 8, 2022 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alienlebarge/32351d59177c42bb725e8f5f19f3f8be to your computer and use it in GitHub Desktop.
Save alienlebarge/32351d59177c42bb725e8f5f19f3f8be to your computer and use it in GitHub Desktop.
Stylish custom style to override workflowy style
/**
* 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