Changes all monospace text on github.com to Fira Code
Might require "Patch CSP to allow style assets" option to be enabled, but it seems to work without it.
AuthorrecursiveGecko
LicenseNo License
Categorygithub
Created
Updated
Size742 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Changes all monospace text on github.com to Fira Code
Might require "Patch CSP to allow style assets" option to be enabled, but it seems to work without it.
/* ==UserStyle==
@name Fira Code GitHub (2023)
@version 20230505.12.34
@namespace userstyles.world/user/recursiveGecko
@description Changes all monospace text on github.com to Fira Code
Might require "Patch CSP to allow style assets" option to be enabled, but it seems to work without it.
@author recursiveGecko
@license No License
==/UserStyle== */
@-moz-document domain("github.com"), domain("gist.github.com"), domain("www.github.com") {
@import url('https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/fira_code.min.css');
.blob-num,
.blob-code,
.text-mono,
.react-blob-print-hide,
.react-code-text,
.highlight span,
.commit-ref,
pre,
code {
font-family: 'Fira Code', 'ui-monospace' !important;
}
}