python
[파이썬] 어두운 테마 - 다크테마 - 마우스오버 색 변경
from tkinter import * font = ('Consolas 13') root = Tk() root.title('title') # 윈도우의 배경색상 root.configure(bg = 'gray26') root.geometry('300x300+800+250') root.update() # root를 종료 def off(): root.destroy() main = Frame(root) # expand True는 Frame Center로 설정 main.pack(expand=True, padx=10, pady=10) # 버튼 설정 btn1=Button(main, text='off', width=20, font=font, cursor='hand2', relief='ridge', foreground='..