14 lines
567 B
SCSS
14 lines
567 B
SCSS
// Bitmap-style fonts label.js's drawTextLeaf switches to below 10px, where sans-serif gets
|
|
// illegible (see ../assets/fonts/pixel/LICENSE.md for sources); label.js's PIXEL_FONT_TIERS uses
|
|
// only these two of three candidates - the third, PICO-8, has no lowercase glyphs.
|
|
@font-face {
|
|
font-family: "Tom Thumb";
|
|
src: url("../assets/fonts/pixel/TomThumb.ttf") format("truetype");
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Silkscreen";
|
|
src: url("../assets/fonts/pixel/Silkscreen-Regular.woff2") format("woff2");
|
|
font-display: block;
|
|
}
|