epicyon/fonts
Bob Mottram a0a462fe05 Orbitron secondary font 2020-11-16 19:53:02 +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
CheGuevaraTextSans-Regular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
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 Light theme font 2020-05-28 11:33:22 +01:00
GeneralFailureRegular.woff2 Convert ttf to woff2 2020-06-27 14:19:55 +01:00
JetBrainsMono-Regular.woff2 An extra font 2020-08-31 12:31:31 +01:00
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 Orbitron secondary font 2020-11-16 19:53:02 +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
Montserrat-Regular.ttf Rc3 theme 2020-11-16 12:16:56 +00:00
NimbusSanL-italic.otf Modern theme font 2020-10-26 16:52:56 +00:00
NimbusSanL.otf Modern theme font 2020-10-26 16:52:56 +00:00
Octavius.woff2 Extra font 2020-06-27 20:23:47 +01:00
Orbitron.ttf Orbitron secondary font 2020-11-16 19:53:02 +00:00
README.md Fonts documentation 2020-05-24 23:21:26 +01:00
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 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 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.woff Test woff 2020-07-12 21:15:27 +00:00
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
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;