I\'m trying to calculate some RGB colors (0 - 255) for a 0 to 1 scale. Does anyone knows a online converter or it exists a ma
RGB colors
(0 - 255)
0
1
a = x / 255
or
x = a * 255
where x is the RGB value and a is your desired result.
x
a