I can't get the background colour of my kivy button to come out red, giving it rgba values of 1,0,0,1
gives me a dark maroon colour. However, if I set the colour of the text to 1,0,0,1
it does give me the correct shade of red.
I've tried various rgba combinations but to no avail. Does it have something to do with a background colour already being applied so the red mixed with a default grey makes this dark maroon colour I am seeing?
Button:
text: "No"
size_hint: 0.4, 0.2
pos_hint: {"x": 0.5, "top": 0.4}
background_color: 1, 0, 0, 1
color: 1, 0, 0, 1
on_press: root.no_btn(app.user_email)