Color Code Converter
This simple color converter tool allow you to convert RGB color code to Hexadecimal color code and reverse.
The rgb to hex / hex to rgb color converter above is simple tool to use.
Convert
button to get the converted color code.Every color is a combination of Red, Green and Blue. This RGB color system is a system of creating different colors with the combination of the Red, Green and Blue Colors. The color value from 0 to 255 where 0 is the least intensity and 255 being the highest intensity.
The color format for RGB is rgb(red, green, blue)
where red, green and blue are the color values.
Adding highest intensity of all the colors (Red, Green and Blue) will give you white color, and adding least intensity of all the colors will give you black color.
For example,
rgb(0,0,0) will give you black color
rgb(255,255,255) will give you white color
rgb(255,0,0) will give you red color
rgb(0,255,0) will give you green color
rgb(0,0,255) will give you blue color
Hexadecimal color code is a 6-digit code that represents the combination of those 3 colors (Red, Green and Blue). The first two digits represents the Red color, followed by green and blue. Each color is represented by a 2-digit hexadecimal number.
The hexadecimal color format is #rrggbb
. Notice the #
symbol before the color code.
#
symbol is used to represent the hexadecimal color code.