This is not the greatest programming, but its a solution to your problem:
from Tkinter import *
c1 = "blue"
class App:
def __init__(self, master, c1):
self.frame = Frame(master)
self.frame.pack()
self.button = Button(self.frame, text="QUIT", fg="red"...