summaryrefslogtreecommitdiff
path: root/src/sliceitoff/screens/initials.py
blob: 632cfa43d188f220dba27c735f4bc2a2737d780c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
""" screens.initials - screen where input initials when one makes
    to hiscores """
from text import TextPage

def initials_screen(name):
    """ initials_screen - screen where name is updating as user imputs """
    return TextPage(
            f" New High Score!\n"
            f"\n"
            f"\n"
            f"Initials, please:\n"
            f"\n"
            f"\n"
            f"{name:^17s}",
            font = '8x8',
            size = (16_000, 16_000),
            pos = (24_000, 32_000) )