#e08f93 Color
Color Codes | |
---|---|
Hex Code | #e08f93 |
RGB Code | rgb(224, 143, 147) |
HSL Code | hsl(357, 57%, 72%) |
#e08f93 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(224, 143, 147); }
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(357, 57%, 72%); }
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 #e08f93
RGB Code | Hex Code | Preview |
---|---|---|
rgb(224, 143, 147, 10%) | #e08f931a | |
rgb(224, 143, 147, 20%) | #e08f9333 | |
rgb(224, 143, 147, 40%) | #e08f934C | |
rgb(224, 143, 147, 60%) | #e08f9399 | |
rgb(224, 143, 147, 80%) | #e08f93CC | |
rgb(224, 143, 147, 100%) | #e08f93FF |
Saturated and desaturated colors of #e08f93
HSL Code | Preview |
---|---|
hsl(357, 10%, 72%) | |
hsl(357, 20%, 72%) | |
hsl(357, 40%, 72%) | |
hsl(357, 60%, 72%) | |
hsl(357, 80%, 72%) | |
hsl(357, 100%, 72%) |
#e08f93 Color Usage In CSS
body { color: #e08f93; } p { color: rgb(224, 143, 147); } header { border-bottom:1px solid #e08f93; }