Skip to content

Instantly share code, notes, and snippets.

@htunnicliff
Created September 24, 2025 16:05
Show Gist options
  • Save htunnicliff/e9b1f753a5a706c0b1940c89fae700f3 to your computer and use it in GitHub Desktop.
Save htunnicliff/e9b1f753a5a706c0b1940c89fae700f3 to your computer and use it in GitHub Desktop.
// ==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