RGB 0-1


What is RGB 0-1?

RGB 0-1 is a color model where each of the red, green, and blue values is represented as a decimal between 0 and 1 instead of the typical 0-255 range. This format provides greater precision in color manipulation, often used in graphics software. For example, the RGB 0-255 value (255, 128, 64) becomes (1.00, 0.50, 0.25) in RGB 0-1.

Converting RGB 0-1 to/from RGB 0-255:

  • To convert 0-255 to 0-1, divide by 255.
  • To convert 0-1 to 0-255, multiply by 255.

Also known as “Unit RGB,” “Float RGB,” or “Decimal RGB,” this format uses normalized decimal values.