epicyon/fonts
Bob Mottram 93dd897bb6 Extra font 2020-06-07 22:26:31 +01:00
..
Absortile-Bold.ttf Extra font 2020-05-27 22:28:57 +01:00
Absortile.ttf Extra font 2020-05-27 22:28:57 +01:00
CheGuevaraTextSans-Regular.ttf Extra font 2020-05-28 11:14:57 +01:00
Domestic_Manners.ttf Extra fonts 2020-05-28 12:46:33 +01:00
Edition.ttf Extra fonts 2020-05-27 21:35:38 +01:00
ElectrumADFExp-Regular.otf Light theme font 2020-05-28 11:33:22 +01:00
GeneralFailureRegular.ttf Extra fonts 2020-05-27 21:35:38 +01:00
Judges.woff Extra font 2020-05-27 23:36:02 +01:00
LICENSES Extra font 2020-06-07 22:26:31 +01:00
LcdSolid.ttf Extra fonts 2020-05-27 21:35:38 +01:00
LinBiolinum_Kah.ttf Extra fonts 2020-05-28 12:46:33 +01:00
LinBiolinum_RBah.ttf Extra fonts 2020-05-28 12:46:33 +01:00
LinBiolinum_RIah.ttf Extra fonts 2020-05-28 12:46:33 +01:00
LinBiolinum_Rah.ttf Extra fonts 2020-05-28 12:46:33 +01:00
MarginaliaRegular.ttf Extra font 2020-05-27 22:17:14 +01:00
README.md Fonts documentation 2020-05-24 23:21:26 +01:00
RailModel.ttf Extra font 2020-05-27 22:06:05 +01:00
SubZER0.ttf Starlight theme font 2020-06-07 22:21:02 +01:00
SundownerRegular.ttf Extra fonts 2020-05-27 21:35:38 +01:00
Warenhaus-Standard.ttf fonts 2020-05-25 12:22:49 +01:00
bedstead-condensed.otf fonts 2020-05-25 12:22:49 +01:00
bedstead-extended.otf fonts 2020-05-25 12:22:49 +01:00
bedstead-extracondensed.otf fonts 2020-05-25 12:22:49 +01:00
bedstead-semicondensed.otf fonts 2020-05-25 12:22:49 +01:00
bedstead-ultracondensed.otf fonts 2020-05-25 12:22:49 +01:00
bedstead.otf fonts 2020-05-25 12:22:49 +01:00
bgrove.ttf Extra font 2020-06-07 22:26:31 +01:00
bgroveb.ttf Extra font 2020-06-07 22:26:31 +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;