def change(event):
    b['fg'] = "blue"
    b['activebackground'] = "green"
b = Button(text='RED', width=10, height=3)
b.bind('<Button-1>', change)