Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python tkinter button color

def fade(widget, smoothness=4, cnf={}, **kw):
    """This function will show faded effect on widget's different color options.

    Args:
        widget (tk.Widget): Passed by the bind function.
        smoothness (int): Set the smoothness of the fading (1-10).
        background (str): Fade background color to.
        foreground (str): Fade foreground color to."""

    kw = tk._cnfmerge((cnf, kw))
    if not kw: raise ValueError("No option given, -bg, -fg, etc")
    if len(kw)>1: return [fade(widget,smoothness,{k:v}) for k,v in kw.items()][0]
    if not getattr(widget, '_after_ids', None): widget._after_ids = {}
    widget.after_cancel(widget._after_ids.get(list(kw)[0], ' '))
    c1 = tuple(map(lambda a: a/(65535), widget.winfo_rgb(widget[list(kw)[0]])))
    c2 = tuple(map(lambda a: a/(65535), widget.winfo_rgb(list(kw.values())[0])))
    colors = tuple(colour.rgb2hex(c, force_long=True)
                   for c in colour.color_scale(c1, c2, max(1, smoothness*100)))

    def worker(count=0):
        if len(colors)-1 <= count: return
        widget.config({list(kw)[0] : colors[count]})
        widget._after_ids.update( { list(kw)[0]: widget.after(
            max(1, int(smoothness/10)), worker, count+1) } )
    worker()
#source: https://stackoverflow.com/questions/49433315/is-there-a-wayor-a-library-for-making-a-smooth-colour-transition-in-tkinter
Comment

how to change the color of a button in python tkinter

from tkinter import * 
import time
import random

Main_screen = Tk()
Main_screen.title("Log in screen")#setting the title of the log in screen
Main_screen.geometry("700x300")# setting the defalt size of the log in screen

Label(Main_screen,text="Welcome To Empire of programmers login system",font=("Bold", 20)).pack()

Label(Main_screen,text="User Name:- ").pack()
User_name = Entry(Main_screen)#Making the entry box for getting the User name for log in
User_name.pack()

Label(Main_screen,text="Password:- ").pack()
User_name = Entry(Main_screen,show="#")#Making the entry box for getting the User Password for log in and insted of showing the Entry password showing it with an #
User_name.pack()

Button(Main_screen,text="Log in", bg="light blue").pack()

Main_screen.mainloop()
Comment

gui button in tkinter color

import Image as PIL
import ImageTk
Comment

tkinter change ttk button color

button = tk.Button(root, text="Sign Out", bg='red', command= lambda: controller.show_frame(10)) #, highlightthickness = 0, bd = 0)
button.grid(row=3, column=0, sticky='ne', padx=20, pady=50)
Comment

PREVIOUS NEXT
Code Example
Python :: vs code set interpreter 
Python :: matplotlib set colorbar range 
Python :: convert files to jpeg 
Python :: a list inside a list python 
Python :: python schema 
Python :: sum 2d array in python 
Python :: python tuple methods 
Python :: pd.explode 
Python :: sklearn.metrics accuracy_score 
Python :: python hex 
Python :: car python program 
Python :: python ternary operators 
Python :: setdefault python 
Python :: np minimum of array 
Python :: hash in python 
Python :: python tokens 
Python :: python class variables 
Python :: python call function by string 
Python :: python default dictionary 
Python :: django values_list 
Python :: python tkinter scrollbar 
Python :: python 4 release date 
Python :: odd number sum in python 
Python :: python3 password generator script 
Python :: tkinter triangle 
Python :: printing hello world in python 
Python :: negate an int in python 
Python :: functional conflict definition 
Python :: opencv write video 
Python :: Mixed Fractions in python 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =