GitHunt
SA

samanpwbb/wilderplace-fonts

A collection of CC0 licensed fonts used in the game Wilderplace

wilderplace-fonts

A collection of CC0 licensed fonts from the upcoming game Wilderplace. All characters were hand-drawn and then vectorized and converted into font files using calligraphr.

These fonts:

  • Are capital-letters only.
  • Character sets include A-Z, 0-9, and basic punctuation.
  • Contain at least one variant per character to sell the hand-drawn look.
  • Use auto-generated tracking from calligraphr, which is not very good. You'll have to embrace the raw aesthetic or find another source for your fonts!

Previews

Wilderplace Sans Regular

divine-preview
divine-preview-2

Wilderplace Glitch Regular

divine-preview
divine-preview-2

Wilderplace Pixel Regular

divine-preview
divine-preview-2

Wilderplace Divine Regular

divine-preview
divine-preview-2

CSS Usage

Assuming you've downloaded the fonts and have the following file structure:

/style.css
/WilderplaceSans-Regular.otf
/WilderplaceGlitch-Regular.otf
/WilderplacePixel-Regular.otf
/WilderplaceDivine-Regular.otf
/* style.css */
@font-face {
  font-family: 'Wilderplace Sans';
  src: url('./WilderplaceSans-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Wilderplace Glitch';
  src: url('./WilderplaceGlitch-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Wilderplace Pixel';
  src: url('./WilderplacePixel-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Wilderplace Divine';
  src: url('./WilderplaceDivine-Regular.otf') format('opentype');
}

.font-wilderplace-sans {
  font-family: 'Wilderplace Sans';
}

.font-wilderplace-glitch {
  font-family: 'Wilderplace Glitch';
}

.font-wilderplace-glitch {
  font-family: 'Wilderplace Glitch';
}

.font-wilderplace-pixel {
  font-family: 'Wilderplace Pixel';
}

.font-wilderplace-divine {
  font-family: 'Wilderplace Divine';
}

For a more authentic hand-drawn look, consider CSS background clip to add a texture behind the fonts.

Contributors

Creative Commons Zero v1.0 Universal
Created March 25, 2022
Updated February 22, 2026
samanpwbb/wilderplace-fonts | GitHunt