Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 623 Bytes

fonts.md

File metadata and controls

22 lines (17 loc) · 623 Bytes

This is the website I got the SVG font paths from.

This script helps get all the paths from the app automatically:

let letterPaths = [];
let timeout = 0;
for (let letter of 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz') {
  setTimeout(()=>{
    document.getElementById('input-text').value = letter;
    app.renderCurrent();

    setTimeout(()=>{
      letterPaths.push(document.getElementById('output-svg').value);
    }, 200);
    
  }, timeout);
  timeout += 1000;
}

The first font I've grabbed is Roboto, and the next will be Allerta Stencil.