All Projects β†’ fontsource β†’ Fontsource

fontsource / Fontsource

Licence: mit
Self-host Open Source fonts in neatly bundled NPM packages.

Projects that are alternatives of or similar to Fontsource

fontless
πŸš€πŸ”’ Host your own Google Fonts.
Stars: ✭ 63 (-92.46%)
Mutual labels:  font, fonts, google-fonts
Yrsa Rasa
Yrsa &Β Rasa: fonts for Latin and Gujarati
Stars: ✭ 200 (-76.08%)
Mutual labels:  font, fonts, google-fonts
Work Sans
A grotesque sans.
Stars: ✭ 1,319 (+57.78%)
Mutual labels:  font, fonts, google-fonts
Urbanist
Urbanist is a low-contrast, geometric sans-serif inspired by Modernist design and typography.
Stars: ✭ 374 (-55.26%)
Mutual labels:  font, fonts, google-fonts
Inkwell
An inkwell to use custom fonts on the fly.
Stars: ✭ 146 (-82.54%)
Mutual labels:  font, fonts, google-fonts
eczar
Eczar: fonts for Devanagari and Latin
Stars: ✭ 52 (-93.78%)
Mutual labels:  font, fonts, google-fonts
fonts
Web fonts that you probably won't find in a CDN
Stars: ✭ 26 (-96.89%)
Mutual labels:  font, fonts
Swash
Fonts in iOS made safe, expressive, and dynamic.
Stars: ✭ 73 (-91.27%)
Mutual labels:  font, fonts
Polyicon
Flutter icon set generator
Stars: ✭ 268 (-67.94%)
Mutual labels:  font, fonts
Fonts
A collection of rad, open-source typefaces that everyone needs in their lives.
Stars: ✭ 24 (-97.13%)
Mutual labels:  open-source, fonts
homecomputer-fonts
Variable fonts based on the Commodore 64 and Amiga fonts.
Stars: ✭ 58 (-93.06%)
Mutual labels:  font, fonts
Golang Tutorials
Go Tutorials - Let's get our hands really dirty by writing a lot of Golang code
Stars: ✭ 277 (-66.87%)
Mutual labels:  google, open-source
Fontisto
The iconic font and CSS toolkit. Fontisto gives you scalable vector icons that can instantly be customized: size, color, drop shadow and anything that can be done with the power of CSS.
Stars: ✭ 413 (-50.6%)
Mutual labels:  font, sass
hoard-of-bitfonts
turns out I like bitmap fonts
Stars: ✭ 811 (-2.99%)
Mutual labels:  font, fonts
tstyle
Customize Termux Font & Colors
Stars: ✭ 186 (-77.75%)
Mutual labels:  font, fonts
font-wonder-unit
Free and open source sans-serif font, brought to you by Wonder Unit.
Stars: ✭ 57 (-93.18%)
Mutual labels:  font, fonts
Fraunces
Git Repository for Fraunces Font Family
Stars: ✭ 310 (-62.92%)
Mutual labels:  font, google-fonts
Codeface
Typefaces for source code beautification
Stars: ✭ 5,612 (+571.29%)
Mutual labels:  font, fonts
Juliamono
repository for JuliaMono, a monospaced font with reasonable Unicode support.
Stars: ✭ 625 (-25.24%)
Mutual labels:  font, fonts
Nerd Fonts
Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, & more
Stars: ✭ 31,778 (+3701.2%)
Mutual labels:  font, fonts

Fontsource

Generic badge Monthly Downloads Total Downloads License GitHub stars

An updating monorepo full of self-hostable Open Source fonts bundled into individual NPM packages! Inspired by the aging Typefaces project and primarily built using Google Font Metadata.

Our supported font search directory can be found here (in very early development and may contain outdated information) or alternatively in Markdown format here.

  • Self-hosting brings significant performance gains as typically loading fonts from hosted font services, such as Google Fonts, lead to an extra (render blocking) network request. To provide perspective, for simple websites it has been seen to double visual load times. Benchmarks can be found here and here.

  • Fonts remain version locked. Google often pushes updates to their fonts without notice, which may interfere with your live production projects. Manage your fonts like any other NPM dependency.

  • Your fonts load offline. Often there may be situations, like working in an airplane or train, leaving you stranded without access to your online hosted fonts. Have the ability to keep working under any circumstance.

  • Support for fonts outside the Google Font ecosystem. This repository is constantly evolving with other Open Source fonts. Feel free to contribute!

Installation

Fontsource assumes you are using a bundler, such as Webpack, to load in CSS. Solutions like CRA, Gatsby and Next.js are prebuilt examples that are compatible.

This is an installation example using Open Sans, applicable to all other fonts searchable via NPM or the packages directory.

yarn add @fontsource/open-sans // npm install @fontsource/open-sans

Then within your app entry file or site component, import it in. For example in Gatsby, you could choose to import it into a layout template (layout.js), page component (index.js), or gatsby-browser.js.

import "@fontsource/open-sans" // Defaults to weight 400 with normal variant.

Fontsource allows you to select weights and even individual styles, allowing you to cut down on payload sizes to the last byte! Utilizing the CSS unicode-range selector, all language subsets are accounted for.

import "@fontsource/open-sans/500.css" // Weight 500.
import "@fontsource/open-sans/900-italic.css" // Italic variant.

Alternatively, the same solutions could be imported via SCSS!

@import "[email protected]/open-sans/index.css";
@import "[email protected]/open-sans/300-italic.css";

For more advanced setups, you can use our highly customisable Sass mixins that can modify many of the existing @font-face variables.

@import "[email protected]/open-sans/scss/mixins";

// Uses a unicode-range map to automatically generate multiple @font-face rules.
@include fontFace(
  $weight: 500,
  $display: fallback,
  $fontDir: "[email protected]/open-sans/files"
);

// Fully customisable single @font-face mixin.
@include fontFaceCustom(
  $weight: 600,
  $display: optional,
  $woff2Path: "#{$fontDir}/custom-file.woff2",
  $unicodeRange: false
);

We also have default variables that you can use!

@import "[email protected]/open-sans/scss/mixins";

$style: italic;

@include fontFace($weight: 500);
@include fontFace($weight: 600);

// Applies italic to both @includes.

You can see all of the existing inputtable mixin variables here.

Do confirm on Google Fonts (or elsewhere) whether your font supports a certain subset, weight or style beforehand as these examples may not reflect actual compatibility.

Finally, you can reference the font name in a CSS stylesheet, CSS Module, or CSS-in-JS.

body {
  font-family: "Open Sans";
}

Variable Fonts

This repository supports variable fonts that Google Fonts provide. You can find the full list of available options here. Instructions on how to install and use can be found on the relevant package README.

Additional Options

In the rare case you need to individually select a language subset and not utilize the CSS unicode-range selector, you may specify the import as follows. This is especially not recommended for languages, such as Japanese, with a large amount of characters.

import "@fontsource/open-sans/latin-ext.css" // All weights with normal style included.
import "@fontsource/open-sans/cyrillic-ext-500.css" // Weight 500 with normal style.
import "@fontsource/open-sans/greek-900-italic.css" // Italic variant.

Examples above may not reflect actual variant availability.

Migrating from previous versions

See CHANGELOG.md for more details.

Adding New Fonts

For Open Source fonts that are not automatically updated by the Google ecosystem, we have a generic packager that builds CSS files for the project.

Make a request by creating an issue!

Licensing

It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0.

You can find their specific licenses on each package README.md.

Other Notes

Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].