Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tkinter button background color is not working in mac os

I am trying to change the bg color of a tkinter button on my mac (catalina) but instead of getting a colored background, it is showing a blank white space in the layout.

The button code I used:

button_open = Button(root, width=45, bg="#82CC6C", fg="black", text="OPEN",
                     highlightbackground="#82CC6C", highlightthickness=1,
                     borderwidth=0.2, relief="groove", padx=0, pady=0)
    
button_open.grid()

Result I am getting:

Error button

What I expected:

Expected rersult

I tried changing all the parameters but it is always giving me the same result,

How can we fix this? Is it a bug in tkinter on mac only?

like image 738
Akascape Avatar asked Nov 15 '25 05:11

Akascape


1 Answers

I got the fix:

Use tkmacosx module for tkinter buttons in mac, use from tkmacosx import Button and then change the parameters and also add this parameter borderless=1 to remove the unnecessary layout. You can see the result I got after using this:

MacOS screenshot

like image 119
Akascape Avatar answered Nov 17 '25 19:11

Akascape



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!