File size: 216 Bytes
57f1366 | 1 2 3 4 5 6 7 8 9 10 | import customtkinter as ctk
from src.gui import ChessApp
if __name__ == "__main__":
ctk.set_appearance_mode("Dark")
ctk.set_default_color_theme("blue")
app = ChessApp()
app.mainloop()
|