Last active
May 9, 2026 08:58
-
-
Save Kornil/91dab9506b301ed7bc10fda5b5fef5a9 to your computer and use it in GitHub Desktop.
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
| // ==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