#e5837b Color
Color Codes | |
---|---|
Hex Code | #e5837b |
RGB Code | rgb(229, 131, 123) |
HSL Code | hsl(5, 67%, 69%) |
#e5837b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 131, 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(5, 67%, 69%); }
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 #e5837b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 131, 123, 10%) | #e5837b1a | |
rgb(229, 131, 123, 20%) | #e5837b33 | |
rgb(229, 131, 123, 40%) | #e5837b4C | |
rgb(229, 131, 123, 60%) | #e5837b99 | |
rgb(229, 131, 123, 80%) | #e5837bCC | |
rgb(229, 131, 123, 100%) | #e5837bFF |
Saturated and desaturated colors of #e5837b
HSL Code | Preview |
---|---|
hsl(5, 10%, 69%) | |
hsl(5, 20%, 69%) | |
hsl(5, 40%, 69%) | |
hsl(5, 60%, 69%) | |
hsl(5, 80%, 69%) | |
hsl(5, 100%, 69%) |
#e5837b Color Usage In CSS
body { color: #e5837b; } p { color: rgb(229, 131, 123); } header { border-bottom:1px solid #e5837b; }