#e18472 Color
Color Codes | |
---|---|
Hex Code | #e18472 |
RGB Code | rgb(225, 132, 114) |
HSL Code | hsl(10, 65%, 66%) |
#e18472 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 132, 114); }
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(10, 65%, 66%); }
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 #e18472
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 132, 114, 10%) | #e184721a | |
rgb(225, 132, 114, 20%) | #e1847233 | |
rgb(225, 132, 114, 40%) | #e184724C | |
rgb(225, 132, 114, 60%) | #e1847299 | |
rgb(225, 132, 114, 80%) | #e18472CC | |
rgb(225, 132, 114, 100%) | #e18472FF |
Saturated and desaturated colors of #e18472
HSL Code | Preview |
---|---|
hsl(10, 10%, 66%) | |
hsl(10, 20%, 66%) | |
hsl(10, 40%, 66%) | |
hsl(10, 60%, 66%) | |
hsl(10, 80%, 66%) | |
hsl(10, 100%, 66%) |
#e18472 Color Usage In CSS
body { color: #e18472; } p { color: rgb(225, 132, 114); } header { border-bottom:1px solid #e18472; }