epicyon/fonts
Bob Mottram ff2b08f954 Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
..
Absortile-Bold.woff2
…
Absortile.woff2
…
AtkinsonHyperlegibleNext-Bold.otf Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
AtkinsonHyperlegibleNext-Regular.otf Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
AtkinsonHyperlegibleNext-RegularItalic.otf Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
Barlow-Regular.woff2
…
CheGuevaraTextSans-Regular.woff2
…
CommitMono-450-Italic.otf Add a font 2023-07-12 16:21:46 +01:00
CommitMono-450-Regular.otf Add a font 2023-07-12 16:21:46 +01:00
Domestic_Manners.woff2
…
Edition.woff2
…
ElectrumADFExp-Regular.otf
…
GeneralFailureRegular.woff2
…
Hubot-Sans-Regular.woff2
…
Hubot-Sans-RegularItalic.woff2
…
JetBrainsMono-Regular.woff2
…
Judges.woff
…
LICENSE-Atkinson.txt
…
LICENSE-CC0.txt
…
LICENSE-OFL.txt
…
LICENSE-apache2.txt
…
LICENSES Add the latest hyperlegible font 2025-02-13 10:13:11 +00:00
LcdSolid.woff2
…
LinBiolinum_Kah.woff2
…
LinBiolinum_RBah.woff2
…
LinBiolinum_RIah.woff2
…
LinBiolinum_Rah.woff2
…
MarginaliaRegular.woff2
…
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
…
OpenDyslexic-Italic.woff2
…
OpenDyslexic-Regular.otf
…
OpenDyslexic-Regular.woff
…
OpenDyslexic-Regular.woff2
…
Orbitron.ttf
…
README.md
…
RailModel.woff2
…
StonehengeRegular.ttf Typo 2022-12-21 18:44:24 +00:00
SubZER0.woff2
…
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
…
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;