Created
September 24, 2025 16:05
-
-
Save htunnicliff/e9b1f753a5a706c0b1940c89fae700f3 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 GitHub Monospace Font Override | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-09-23 | |
| // @description Change the default monospace font used by GitHub | |
| // @author You | |
| // @match https://github.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const style = document.createElement('style'); | |
| style.innerHTML = ` | |
| :root { | |
| --fontStack-monospace: 'Maple Mono' !important; | |
| } | |
| `; | |
| document.body.appendChild(style); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment