#7b2b9b Color
Color Codes | |
---|---|
Hex Code | #7b2b9b |
RGB Code | rgb(123, 43, 155) |
HSL Code | hsl(283, 57%, 39%) |
#7b2b9b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(123, 43, 155); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(283, 57%, 39%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #7b2b9b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(123, 43, 155, 10%) | #7b2b9b1a | |
rgb(123, 43, 155, 20%) | #7b2b9b33 | |
rgb(123, 43, 155, 40%) | #7b2b9b4C | |
rgb(123, 43, 155, 60%) | #7b2b9b99 | |
rgb(123, 43, 155, 80%) | #7b2b9bCC | |
rgb(123, 43, 155, 100%) | #7b2b9bFF |
Saturated and desaturated colors of #7b2b9b
HSL Code | Preview |
---|---|
hsl(283, 10%, 39%) | |
hsl(283, 20%, 39%) | |
hsl(283, 40%, 39%) | |
hsl(283, 60%, 39%) | |
hsl(283, 80%, 39%) | |
hsl(283, 100%, 39%) |
#7b2b9b Color Usage In CSS
body { color: #7b2b9b; } p { color: rgb(123, 43, 155); } header { border-bottom:1px solid #7b2b9b; }