Python Forum
[Tkinter] Change background color
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Change background color
#1
I'm trying my first GUI application and was wondering if there is a way to change the background attribute of a Label (or Button?) if a condition changes while the applications is running. I see where you can change the text, but I can't find anything regarding other attributes such as background.

Thanks
If it ain't broke, I just haven't gotten to it yet.
OS: Windows 10, openSuse 42.3, freeBSD 11, Raspian "Stretch"
Python 3.6.5, IDE: PyCharm 2018 Community Edition
Reply
#2
yes you can change it if you are using tkinter ( python3 ) or Tkinter ( python2 )
button.config(bg="#ffdddd")
would change the background of a button.
the #ffdddd is the levels of red, green and blue to make your background colour. they are each 2 digit hex numbers from 0 to 255 decimal.
Reply
#3
You might be interested in this tutorial (One of the best in my humble opinion) http://www.python-course.eu/python_tkinter.php
Reply
#4
Sorry for the delay, busy day yesterday.  Thanks for the tips, I will read and experiment more.
If it ain't broke, I just haven't gotten to it yet.
OS: Windows 10, openSuse 42.3, freeBSD 11, Raspian "Stretch"
Python 3.6.5, IDE: PyCharm 2018 Community Edition
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyQt] [Solved]Change text color of one line in TextBrowser Extra 2 4,867 Aug-23-2022, 09:11 PM
Last Post: Extra
  Tkinter - How can I change the default Notebook border color? TurboC 5 14,721 May-23-2022, 03:44 PM
Last Post: bigmac
Question [Tkinter] Change Treeview column color? water 3 9,570 Mar-04-2022, 11:20 AM
Last Post: Larz60+
  Can't get tkinter button to change color based on changes in data dford 4 3,409 Feb-13-2022, 01:57 PM
Last Post: dford
Question [Tkinter] Can I set background color for each item in tkinter Combobox? water 1 5,098 Dec-10-2020, 07:48 PM
Last Post: Larz60+
  [tkinter] color change for hovering over button teacher 4 8,451 Jul-04-2020, 06:33 AM
Last Post: teacher
  [PyQt] Increase text size and change color based on temp pav1983 5 3,151 Jun-22-2020, 10:52 PM
Last Post: menator01
  TKINTER - Change font color for night or day Ayckinn 2 3,852 May-24-2020, 09:25 PM
Last Post: Ayckinn
  Restoring Tkinter widget background to original color pythonprogrammer 1 2,951 Dec-16-2019, 04:59 AM
Last Post: woooee
  Make Label Text background (default color) transparent using tkinter in python barry76 1 23,707 Nov-28-2019, 10:19 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020