Use Soho for the normal font and Iosevka for the bold/italic font.
Workflowy: Soho and Iosevka by passcod
Details
Authorpasscod
LicenseCC-BY-4.0
Categoryworkflowy
Created
Updated
Size453 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This changes the fonts of Workflowy, without changing the theme. Notably it uses a different font (a monospace code font with ligatures) for bold and italic. So for example, if you have ->
in front of an item, and you bold it, it will now look like an actual arrow.
Source code
/* ==UserStyle==
@name Workflowy: Soho and Iosevka
@version 20210905.00.34
@namespace userstyles.world/user/passcod
@description Use Soho for the normal font and Iosevka for the bold/italic font.
@author passcod
@license CC-BY-4.0
==/UserStyle== */
@-moz-document domain("workflowy.com") {
#documentView {
font-family: 'Soho Pro';
}
.contentBold, .contentItalic, .content b, .content i {
font-family: 'Iosevka';
}
}