0.0.2 • Published 4 years ago

@sourcebin/fonts v0.0.2

Weekly downloads
8
License
-
Repository
-
Last release
4 years ago

Fonts

A collection of free monospace programming fonts.

Usage

Simply import @sourcebin/fonts/dist/index.css in your site and use one of the fonts listed in @sourcebin/fonts. Fonts are loaded through @font-face definitions.

import fonts from '@sourcebin/fonts';

function setFont(el, font) {
  if (fonts.includes(font)) {
    el.style.fontFamily = font;
  }

  throw new Error('Invalid font');
}