why do we have different systems to represent colors in computers?

263 views

I know that CMYK represents colors that are printable.

I know that RGB is the oldest and based on the physics of light.

Why we made the RGB into the complex HEX code?

Why did we invent HSL if it translates to RGB eventually?

In: 6

3 Answers

Anonymous 0 Comments

First, the hex code was to describe every color in the shortest way possible, there’s a variety of applications but mainly it’s short/small for the internets.

HSL has a separate alpha channel, some situations need a full alpha channel for transparency. It’s also a different way to pick shades of a color, for example, just adjusting the lightness can produce shades of the same color. That’s a little trickier in rgb.

CMYK was found by trial and error. Super hip graphic designers will print their own special mix for posters and the like. Not cost effective but can produce special effects.

You are viewing 1 out of 3 answers, click here to view all answers.