Print at Feb 2, 2026, 6:23:53 AM

Posted by ndorigatti at May 4, 2018, 4:04:43 PM
Re: Is Sunflow limited in Sweet Home 3D?
Hi, looking online:
#91895E is rgb(145, 137, 94)

if I take the negative value:
int negative = -7239330;
int r = (negative >> 16) & 0xFF;
int g = (negative >> 8) & 0xFF;
int b = negative & 0xFF;
System.out.println(r);
System.out.println(g);
System.out.println(b);

the output is:
145
137
94