Skip to content

Instantly share code, notes, and snippets.

@Kornil
Last active May 9, 2026 08:58
Show Gist options
  • Select an option

  • Save Kornil/91dab9506b301ed7bc10fda5b5fef5a9 to your computer and use it in GitHub Desktop.

Select an option

Save Kornil/91dab9506b301ed7bc10fda5b5fef5a9 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Cantrill Font Fix
// @namespace https://gist.github.com/Kornil
// @description Fixes the hard to read fonts on the sidebar on HDR screens
// @version 1.0
// @match https://learn.cantrill.io/*
// @grant GM_addStyle
// @updateURL https://gist.githubusercontent.com/Kornil/91dab9506b301ed7bc10fda5b5fef5a9/raw/cantrill-fix.user.js
// @downloadURL https://gist.githubusercontent.com/Kornil/91dab9506b301ed7bc10fda5b5fef5a9/raw/cantrill-fix.user.js
// ==/UserScript==
GM_addStyle(`
* {
font-weight: 400 !important;
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment