SyncTk/classes/custom/themed_frame.py
2023-01-22 17:53:55 +01:00

14 lines
319 B
Python

from ttkthemes import ThemedTk
from typing import Union
import sv_ttk
from tkinter.ttk import Frame
from modules.utils import get_string_mode
class ThemedFrame(Frame):
def __init__(self, master: ThemedTk, **kwargs) -> None:
super().__init__(master, **kwargs)
sv_ttk.set_theme(get_string_mode())