# "my_theme.py" file generated by Pyrustic Manager
from pyrustic import default_style
from pyrustic.theme import Theme
from pyrustic.theme.cyberpunk import Cyberpunk


def get_theme():
    theme = Theme()
    theme.add_theme(Cyberpunk())
    return theme
