#e64863 Color
Color Codes | |
---|---|
Hex Code | #e64863 |
RGB Code | rgb(230, 72, 99) |
HSL Code | hsl(350, 76%, 59%) |
#e64863 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 72, 99); }
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(350, 76%, 59%); }
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 #e64863
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 72, 99, 10%) | #e648631a | |
rgb(230, 72, 99, 20%) | #e6486333 | |
rgb(230, 72, 99, 40%) | #e648634C | |
rgb(230, 72, 99, 60%) | #e6486399 | |
rgb(230, 72, 99, 80%) | #e64863CC | |
rgb(230, 72, 99, 100%) | #e64863FF |
Saturated and desaturated colors of #e64863
HSL Code | Preview |
---|---|
hsl(350, 10%, 59%) | |
hsl(350, 20%, 59%) | |
hsl(350, 40%, 59%) | |
hsl(350, 60%, 59%) | |
hsl(350, 80%, 59%) | |
hsl(350, 100%, 59%) |
#e64863 Color Usage In CSS
body { color: #e64863; } p { color: rgb(230, 72, 99); } header { border-bottom:1px solid #e64863; }