Answers for "kivy background color"

0

kivy button background color

in name.kv:

<name>:
	Button:
    	text: "Hello"
        color: (0, 0.5, 1, 1) #color of the text on the button
        background_color: (1, 0, 0, 1) #bg color of the button
Posted by: Guest on June-29-2021
1

changing the font color in kivy

Label:
	text: "Why does this not work?"
	color: 1,0,1,1
Posted by: Guest on March-27-2020

Browse Popular Code Answers by Language