Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python Kivy language color property

Tags:

python

kivy

Does Kivy language support hex color values such as

#F05F40

Thanks very much in advance!

like image 978
Nuran Afrasiyabov Avatar asked Oct 18 '25 15:10

Nuran Afrasiyabov


1 Answers

Kivy has utils module with get_color_from_hex function that do job:

#:import utils kivy.utils


<Widget>:
    canvas.before:
        Color:
            rgb: utils.get_color_from_hex('#F05F40')
        Rectangle:
            pos: self.pos
            size: self.size

Note, that you should import module in kvlang.

like image 142
Mikhail Gerasimov Avatar answered Oct 22 '25 03:10

Mikhail Gerasimov