epicyon/fonts
Bob Mottram ff2b08f954 Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
..
Absortile-Bold.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
Absortile.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
AtkinsonHyperlegibleNext-Bold.otf
AtkinsonHyperlegibleNext-Regular.otf
AtkinsonHyperlegibleNext-RegularItalic.otf
Barlow-Regular.woff2 Extra font 2020-12-25 11:41:11 +00:00
CheGuevaraTextSans-Regular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
CommitMono-450-Italic.otf
CommitMono-450-Regular.otf
Domestic_Manners.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
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
Hubot-Sans-Regular.woff2 Add an extra font 2022-11-12 11:57:42 +00:00
Hubot-Sans-RegularItalic.woff2 Add an extra font 2022-11-12 11:57:42 +00:00
JetBrainsMono-Regular.woff2 An extra font 2020-08-31 12:31:31 +01:00
Judges.woff
LICENSE-Atkinson.txt Add atkinson font 2022-09-15 09:42:18 +01:00
LICENSE-CC0.txt
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 Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
LcdSolid.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
LinBiolinum_Kah.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
LinBiolinum_RBah.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
LinBiolinum_RIah.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
LinBiolinum_Rah.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
MarginaliaRegular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
Minitel.ttf
MonaSans-Bold.woff2 Header font 2023-12-01 18:26:03 +00:00
MonaSans-Italic.woff2 37C3 font 2023-12-01 16:31:05 +00:00
MonaSans-Regular.woff2 37C3 font 2023-12-01 16:31:05 +00:00
Montserrat-Regular.ttf
NimbusSanL-italic.otf
NimbusSanL.otf
Octavius.woff2 Extra font 2020-06-27 20:23:47 +01:00
OpenDyslexic-Italic.woff2 Update fonts 2022-01-26 23:42:12 +00:00
OpenDyslexic-Regular.otf
OpenDyslexic-Regular.woff
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
StonehengeRegular.ttf
SubZER0.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
SundownerRegular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
Warenhaus-Standard.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
bedstead-condensed.otf
bedstead-extended.otf
bedstead-extracondensed.otf
bedstead-semicondensed.otf
bedstead-ultracondensed.otf
bedstead.otf
bgrove.woff
bgrove.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
bgroveb.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
rainyhearts.ttf
solidaric-italic.woff2 Update fonts 2020-08-03 17:16:49 +01:00
solidaric.woff2 Use html formatting for quotes 2020-08-02 18:01:12 +01:00

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;