epicyon/fonts
Bob Mottram 401aa0712c Update fonts 2022-01-26 23:42:12 +00:00
..
Absortile-Bold.woff2
Absortile.woff2
Barlow-Regular.woff2
CheGuevaraTextSans-Regular.woff2
Domestic_Manners.woff2
Edition.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
ElectrumADFExp-Regular.otf
GeneralFailureRegular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
JetBrainsMono-Regular.woff2
Judges.woff Extra font 2020-05-27 23:36:02 +01:00
LICENSE-CC0.txt Rc3 theme 2020-11-16 12:16:56 +00:00
LICENSE-OFL.txt Rc3 theme 2020-11-16 12:16:56 +00:00
LICENSE-apache2.txt Rc3 theme 2020-11-16 12:16:56 +00:00
LICENSES
LcdSolid.woff2
LinBiolinum_Kah.woff2
LinBiolinum_RBah.woff2
LinBiolinum_RIah.woff2
LinBiolinum_Rah.woff2
MarginaliaRegular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
Minitel.ttf
Montserrat-Regular.ttf
NimbusSanL-italic.otf
NimbusSanL.otf Modern theme font 2020-10-26 16:52:56 +00:00
Octavius.woff2
OpenDyslexic-Italic.woff2 Update fonts 2022-01-26 23:42:12 +00:00
OpenDyslexic-Regular.otf Update fonts 2022-01-26 23:42:12 +00:00
OpenDyslexic-Regular.woff Update fonts 2022-01-26 23:42:12 +00:00
OpenDyslexic-Regular.woff2 Update fonts 2022-01-26 23:42:12 +00:00
Orbitron.ttf
README.md
RailModel.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
SubZER0.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
SundownerRegular.woff2
Warenhaus-Standard.woff2
bedstead-condensed.otf
bedstead-extended.otf
bedstead-extracondensed.otf
bedstead-semicondensed.otf
bedstead-ultracondensed.otf
bedstead.otf
bgrove.woff
bgrove.woff2
bgroveb.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
rainyhearts.ttf
solidaric-italic.woff2
solidaric.woff2

README.md

Epicyon Custom Fonts

Add any fonts that you may want to use within themes to this directory. They can be in ttf, woff or woff2 format.

Within your CSS include the font with:

@font-face {
  font-family: 'Your Font Name';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('./fonts/yourfont.woff2') format('woff2'),
    url('./fonts/yourfont.woff') format('woff'),
    url('./fonts/yourfont.ttf') format('truetype');
}

Then you can reference it later with:

font-family: 'Your Font Name', serif;