#e49b94 Color
Color Codes | |
---|---|
Hex Code | #e49b94 |
RGB Code | rgb(228, 155, 148) |
HSL Code | hsl(5, 60%, 74%) |
#e49b94 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 155, 148); }
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, 60%, 74%); }
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 #e49b94
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 155, 148, 10%) | #e49b941a | |
rgb(228, 155, 148, 20%) | #e49b9433 | |
rgb(228, 155, 148, 40%) | #e49b944C | |
rgb(228, 155, 148, 60%) | #e49b9499 | |
rgb(228, 155, 148, 80%) | #e49b94CC | |
rgb(228, 155, 148, 100%) | #e49b94FF |
Saturated and desaturated colors of #e49b94
HSL Code | Preview |
---|---|
hsl(5, 10%, 74%) | |
hsl(5, 20%, 74%) | |
hsl(5, 40%, 74%) | |
hsl(5, 60%, 74%) | |
hsl(5, 80%, 74%) | |
hsl(5, 100%, 74%) |
#e49b94 Color Usage In CSS
body { color: #e49b94; } p { color: rgb(228, 155, 148); } header { border-bottom:1px solid #e49b94; }