Still WIP

This commit is contained in:
Profitroll
2023-01-22 17:53:55 +01:00
parent 67f87e0830
commit 1be317898f
10 changed files with 432 additions and 261 deletions

View File

@@ -0,0 +1,14 @@
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())