#e62658 Color
Color Codes | |
---|---|
Hex Code | #e62658 |
RGB Code | rgb(230, 38, 88) |
HSL Code | hsl(344, 79%, 53%) |
#e62658 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 38, 88); }
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(344, 79%, 53%); }
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 #e62658
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 38, 88, 10%) | #e626581a | |
rgb(230, 38, 88, 20%) | #e6265833 | |
rgb(230, 38, 88, 40%) | #e626584C | |
rgb(230, 38, 88, 60%) | #e6265899 | |
rgb(230, 38, 88, 80%) | #e62658CC | |
rgb(230, 38, 88, 100%) | #e62658FF |
Saturated and desaturated colors of #e62658
HSL Code | Preview |
---|---|
hsl(344, 10%, 53%) | |
hsl(344, 20%, 53%) | |
hsl(344, 40%, 53%) | |
hsl(344, 60%, 53%) | |
hsl(344, 80%, 53%) | |
hsl(344, 100%, 53%) |
#e62658 Color Usage In CSS
body { color: #e62658; } p { color: rgb(230, 38, 88); } header { border-bottom:1px solid #e62658; }