summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/initials.py
blob: aadb141fdd0855a151e8a79b0b58adc09b5496e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from text import TextPage

def initials_screen(name):
    return TextPage(
            f" New High Score!\n"
            f"\n"
            f"\n"
            f"Please give name:\n"
            f"\n"
            f"\n"
            f"{name:^17s}",
            font = '8x8',
            size = (16_000, 16_000),
            pos = (24_000, 32_000) )