Hex color code used to display content on webpages, this code display and describe specific color codes with RGB format. Colors are used in webpages such as RGB or Hex format. Hex stands for a hexadecimal format like #FFFFFF. Our online color tool generates a color value of RGB which means Red, Green, and Blue.
Color formats are used in CSS( Cascading Style Sheets) by decease and increase the rate of red, green and blue parentage between 0 to 100.
RGB stands for Red, Green and Blue. It refers to three colors of light that mixed and produce different colors. Coming these colors of light is the standard method of producing a colorful image.
RGB is a three-color model that means it includes Red, Green, and Blue color. It also used with alpha channel then its call RGBA. The Alpha channel defines as a number between 0.0 (means fully transparent) and 1.0 (means fully opaque). So resign behind using this we can handle opacity of color by Alpha.
RGBA color is specified with the following syntax
rgba(red, green, blue, alpha).
For example
Color Name | Color Hex Code | Color RGBA Code |
---|---|---|
Black | #000000 | rgba(0,0,0,1) |
White | #FFFFFF | rgba(255,255,255,1) |
Red | #FF0000 | rgba(255,0,0,1) |
Lime | #00FF00 | rgba(0,255,0,1) |
Yellow | #FFFF00 | rgba(255,255,0,1) |
Blue | #0000FF | rgba(0,0,255,1) |
Purple | #800080 | rgba(128,0,128,1) |
Maroon | #800000 | rgba(128,0,0,1) |
Olive | #808000 | rgba(128,128,0,1) |
Teal | #008080 | rgba(0,128,128,1) |
Navy | #000080 | rgba(0,0,128,1) |
Gray | #808080 | rgba(128,128,128,1) |
Silver | #C0C0C0 | rgba(192,192,192,1) |
Magenta | #FF00FF | rgba(255,0,255,1) |
Cyan | #00FFFF | rgba(0,255,255,1) |
Green | #008000 | rgba(0,128,0,1) |