mirror of
https://github.com/Hopiu/bowser.git
synced 2026-03-16 19:10:24 +00:00
11 lines
215 B
Python
11 lines
215 B
Python
|
|
"""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)
|