#e67aa2 Color
Color Codes | |
---|---|
Hex Code | #e67aa2 |
RGB Code | rgb(230, 122, 162) |
HSL Code | hsl(338, 68%, 69%) |
#e67aa2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 122, 162); }
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(338, 68%, 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 #e67aa2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 122, 162, 10%) | #e67aa21a | |
rgb(230, 122, 162, 20%) | #e67aa233 | |
rgb(230, 122, 162, 40%) | #e67aa24C | |
rgb(230, 122, 162, 60%) | #e67aa299 | |
rgb(230, 122, 162, 80%) | #e67aa2CC | |
rgb(230, 122, 162, 100%) | #e67aa2FF |
Saturated and desaturated colors of #e67aa2
HSL Code | Preview |
---|---|
hsl(338, 10%, 69%) | |
hsl(338, 20%, 69%) | |
hsl(338, 40%, 69%) | |
hsl(338, 60%, 69%) | |
hsl(338, 80%, 69%) | |
hsl(338, 100%, 69%) |
#e67aa2 Color Usage In CSS
body { color: #e67aa2; } p { color: rgb(230, 122, 162); } header { border-bottom:1px solid #e67aa2; }