A CSS snippet for Stylus to override Taskade’s default font stack, which can render unreadably thin fonts (like Inter Thin or Nimbus Sans) on Ubuntu/Chrome systems. This issue stems from Tailwind CSS's ui-sans-serif token resolving to poor defaults on Linux.
/* Taskade font override for better readability on Ubuntu/Linux */
* {
font-family: "Ubuntu", "Open Sans", "Arial", sans-serif !important;
font-weight: 500 !important;
-webkit-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
}- Install Stylus Chrome Extension
- Click the Stylus icon → Manage
- Create a new style for:
taskade.com - Paste the CSS from above
- Save and reload Taskade
- Issue: Taskade uses a Tailwind font stack that includes
ui-sans-serif, which maps to fonts likeInter ThinorNimbus Sanson Ubuntu/Chrome. - Symptoms: Fonts appear very thin, low-contrast, and difficult to read.
- Impact: Affects Ubuntu/Linux users (especially Chromium-based browsers).
- Why it happens: Font fallback resolution and weight rendering on Linux is inconsistent and often defaults to thin, poorly hinted fonts.