Define hexadecimal color values Why would you use a hexadeci
Define hexadecimal color values. Why would you use a hexadecimal value instead of the name of a color?
Solution
Hexadecimal color values gives information about different colors including color models like RGB,HSL,HSV and CMYK etc. We used value instead of name because it is easier to deal those values in the code.
Each hexadecimal color is a hex triplet. It represents three separate values that specify the levels of the component colors. The code starts with a # sign and followed by six hex values or three hex value pairs (for example, #EA1243). The code is generally associated with HTML and CSS, viewed on a screen, and as such the hex value pairs refer to the RGB color space.
