0

I have 3 buttons

playbtn = Button(buttonframe,text="PLAY",command=self.playsong,width=6,height=1,font=("Comic Sans MS",16,"bold"),fg="coral4",bg="sandy brown").grid(row=0,column=0,padx=10,pady=5)

playbtn = Button(buttonframe,text="PAUSE",command=self.pausesong,width=8,height=1,font=("Comic Sans MS",16,"bold"),fg="coral4",bg="sandy brown").grid(row=0,column=1,padx=10,pady=5)

playbtn = Button(buttonframe,text="UNPAUSE",command=self.unpausesong,width=10,height=1,font=("Comic Sans MS",16,"bold"),fg="coral4",bg="sandy brown").grid(row=0,column=2,padx=10,pady=5)

playbtn = Button(buttonframe,text="STOP",command=self.stopsong,width=6,height=1,font=("Comic Sans MS",16,"bold"),fg="coral4",bg="sandy brown").grid(row=0,column=3,padx=10,pady=5)

But they are grey and not sandy brown? How could I fix this?

buttons

Tom McLean
  • 5,583
  • 1
  • 11
  • 36

0 Answers0