TomSchimansky / CustomTkinter

A modern and customizable python UI-library based on Tkinter
MIT License
11.63k stars 1.09k forks source link

How to add custom fonts from figma to custom tkinter? #2556

Closed FriesFriday closed 3 months ago

FriesFriday commented 3 months ago

Hey guys, I'm trying to add an font from figma to my GUI and I don't know how. Thanks for your time :)

Akascape commented 3 months ago

@FriesFriday If you want to import a .ttf font, then you can do it with customtkinter.FontManager.load_font("my_font_file.ttf"). Check here for more info: #900

FriesFriday commented 3 months ago

Thanks @Akascape ,Maybe they should add this to the docs since I didn't saw it there