rescalon34

Results 1 comments of rescalon34

Hi @rickyManalo you can convert the obtained color to Hexadecimal using: `Integer.toHexString(color)`. I'm using the following function, maybe it can help you too. ``` val hexColor = "#" + Integer.toHexString(color).substring(2).toUpperCase()...