#e48d78 Color
Color Codes | |
---|---|
Hex Code | #e48d78 |
RGB Code | rgb(228, 141, 120) |
HSL Code | hsl(12, 67%, 68%) |
#e48d78 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 141, 120); }
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(12, 67%, 68%); }
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 #e48d78
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 141, 120, 10%) | #e48d781a | |
rgb(228, 141, 120, 20%) | #e48d7833 | |
rgb(228, 141, 120, 40%) | #e48d784C | |
rgb(228, 141, 120, 60%) | #e48d7899 | |
rgb(228, 141, 120, 80%) | #e48d78CC | |
rgb(228, 141, 120, 100%) | #e48d78FF |
Saturated and desaturated colors of #e48d78
HSL Code | Preview |
---|---|
hsl(12, 10%, 68%) | |
hsl(12, 20%, 68%) | |
hsl(12, 40%, 68%) | |
hsl(12, 60%, 68%) | |
hsl(12, 80%, 68%) | |
hsl(12, 100%, 68%) |
#e48d78 Color Usage In CSS
body { color: #e48d78; } p { color: rgb(228, 141, 120); } header { border-bottom:1px solid #e48d78; }