#e910b6 Color
Color Codes | |
---|---|
Hex Code | #e910b6 |
RGB Code | rgb(233, 16, 182) |
HSL Code | hsl(314, 87%, 49%) |
#e910b6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 16, 182); }
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(314, 87%, 49%); }
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 #e910b6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 16, 182, 10%) | #e910b61a | |
rgb(233, 16, 182, 20%) | #e910b633 | |
rgb(233, 16, 182, 40%) | #e910b64C | |
rgb(233, 16, 182, 60%) | #e910b699 | |
rgb(233, 16, 182, 80%) | #e910b6CC | |
rgb(233, 16, 182, 100%) | #e910b6FF |
Saturated and desaturated colors of #e910b6
HSL Code | Preview |
---|---|
hsl(314, 10%, 49%) | |
hsl(314, 20%, 49%) | |
hsl(314, 40%, 49%) | |
hsl(314, 60%, 49%) | |
hsl(314, 80%, 49%) | |
hsl(314, 100%, 49%) |
#e910b6 Color Usage In CSS
body { color: #e910b6; } p { color: rgb(233, 16, 182); } header { border-bottom:1px solid #e910b6; }