How to change popup color in kivy
问题 In Kivy, Popup appears in grey color, what should be changed to make it red color My popup code: class MyPopup(Popup): def show_popup(self): content = BoxLayout(orientation="vertical") content.add_widget(Label(text="Game Over", font_size=20)) mybutton_cancel = Button(text="Cancel", size_hint_y=None) content.add_widget(mybutton_cancel) mypopup = Popup(content = content, title = "oops", auto_dismiss = False, size_hint = (.5, .5)) mybutton_cancel.bind(on_release=mypopup.dismiss) mypopup.open() I