#84087b Color
Color Codes | |
---|---|
Hex Code | #84087b |
RGB Code | rgb(132, 08, 123) |
HSL Code | hsl(304, 89%, 27%) |
#84087b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 08, 123); }
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(304, 89%, 27%); }
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 #84087b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 08, 123, 10%) | #84087b1a | |
rgb(132, 08, 123, 20%) | #84087b33 | |
rgb(132, 08, 123, 40%) | #84087b4C | |
rgb(132, 08, 123, 60%) | #84087b99 | |
rgb(132, 08, 123, 80%) | #84087bCC | |
rgb(132, 08, 123, 100%) | #84087bFF |
Saturated and desaturated colors of #84087b
HSL Code | Preview |
---|---|
hsl(304, 10%, 27%) | |
hsl(304, 20%, 27%) | |
hsl(304, 40%, 27%) | |
hsl(304, 60%, 27%) | |
hsl(304, 80%, 27%) | |
hsl(304, 100%, 27%) |
#84087b Color Usage In CSS
body { color: #84087b; } p { color: rgb(132, 08, 123); } header { border-bottom:1px solid #84087b; }