Hey guys.
I am new to kivy and even thought i read documentation on this problem, I am not able to solve it by myself.
Button:
background_normal: ''
background_color: get_color_from_hex('#918930')
However, when I start to play with command Background_down: '' or something, result doesnt come.
What Almost DOES work is this code:
Button:
background_color: get_color_from_hex('#c31f3d')
background_down:'#c31f3d'But here I get in normal state color as a Default color + Newly defined color, pressed button gets correct color.
If I combine both codes like this:
Button:
background_normal: ''
background_color: get_color_from_hex('#c31f3d')
background_down:'#8FC31F'
I get correct color in normal state, but on press Button doesnt change color so it keeps all the time Normal state color.
So what I need is correct color(defined) in normal state and also in pressed state without any color multiplications.
Thanks for reading and Help
Martin