Last active
March 31, 2023 13:26
-
-
Save mskelton/b93904fb16588d3c4ac7f038ee14249f to your computer and use it in GitHub Desktop.
GitHub custom font
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
/* ==UserStyle== | |
@name GitHub Font | |
@namespace github.com/mskelton | |
@version 1.2.0 | |
@description Uses custom font for GitHub code blocks/editors. | |
@author Mark Skelton | |
@license ISC | |
@homepageURL https://gist.github.com/mskelton/b93904fb16588d3c4ac7f038ee14249f | |
==/UserStyle== */ | |
@-moz-document domain("github.com"), domain("gist.github.com") { | |
@font-face { | |
font-family: termicons; | |
src: local("termicons"); | |
unicode-range: U+D000-D200; | |
} | |
.blob-code-inner, | |
.blob-num, | |
.highlight pre { | |
font-family: termicons, "JetBrains Mono" !important; | |
} | |
.pl-c { | |
font-style: italic; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment