フォント

CustomTkinter

フォントの変更

btn = ct.CTkButton(text="フォント", font=("MS Gothic", 14, "normal"))

WindowsOSでは下記フォントが利用可能です

Meiryo / MS Gothic / MS PGothic / MS Mincho / Yu Gothic UI

Googleフォントの利用

CustomTkinterではOSに入っていないオリジナルフォントを使うことができません

フォントカラーの変更

ct.CTkButton(text_color="#333333")
BACK