Skip to content

✍️ A collection of free monospace programming fonts

License

Notifications You must be signed in to change notification settings

SourceBin/fonts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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');
}