bowser/src/render/fonts.py

11 lines
215 B
Python
Raw Normal View History

2026-01-09 11:20:46 +00:00
"""Font management stubs."""
def get_font(size: int, weight: str = "normal", style: str = "normal"):
return (size, weight, style)
def linespace(font) -> int:
size, _, _ = font
return int(size * 1.2)