RGB (R,G,B)
Red
Green
Blue
HEX CODE
HSV
HSL
The RGB color method is one of the most popular color systems in the world.
RGB systems consists of red, green, and blue light to create the colors
for electronics devices like TV screens, computer monitors, and smartphones.
RGB color is best for screen applications like graphic design.
Red, Green, Blue all color is expressed from 0 (least saturated) to 255 (most saturated).
With combination of (0-255,0-255,0-255) almost 16,777,216 different colors can be generated.
R(red), G(green), B(blue) create color by RGB model is an additive process.
Here is Some Example Color
(0, 0, 0) = Black;
(255, 255, 255) = White;
(255, 0, 0) = Red;
(0, 255, 0) = Green;
(0, 0, 255) = Blue;
(255, 255, 0) = Yellow;
(0, 255, 255) = Cyan;
(255, 0, 255)= Magenta;
For example a color code of hex=#0f9bff is RGB=(15,155,255)
Hex color code starts with #symbols , amd structure is #rrggbb.
First 2 Red value, 2nd Two Green Value , 3rd 2 blue value.
The lowest value of element is 00 and highest value is ff.Hex colour Code has
16,777, 216 possible colour combinations like RGB.HEX codes use a Base-16 numeral system.
Base-16 numeral system represents numbers 0-9 are numerical, and letters A, B, C, D, E, and F
are used for values from 10 to 15 where A=10, B=11, C=12, D=13, E=14 F=15.
This create color code of hex