21 lines
741 B
SCSS
21 lines
741 B
SCSS
// Specialized bitmap-style fonts label.js's drawTextLeaf switches to below an effective text
|
|
// size of 10px, where a general-purpose sans-serif gets blurry/illegible - each is designed for
|
|
// (and named after) roughly the pixel size it's used at. See
|
|
// ../assets/fonts/pixel/LICENSE.md for sources/licenses.
|
|
@font-face {
|
|
font-family: "Tom Thumb";
|
|
src: url("../assets/fonts/pixel/TomThumb.ttf") format("truetype");
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "PICO-8";
|
|
src: url("../assets/fonts/pixel/PICO-8.ttf") format("truetype");
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Silkscreen";
|
|
src: url("../assets/fonts/pixel/Silkscreen-Regular.woff2") format("woff2");
|
|
font-display: block;
|
|
}
|