#d55e95 Color
Color Codes | |
---|---|
Hex Code | #d55e95 |
RGB Code | rgb(213, 94, 149) |
HSL Code | hsl(332, 59%, 60%) |
#d55e95 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(213, 94, 149); }
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(332, 59%, 60%); }
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 #d55e95
RGB Code | Hex Code | Preview |
---|---|---|
rgb(213, 94, 149, 10%) | #d55e951a | |
rgb(213, 94, 149, 20%) | #d55e9533 | |
rgb(213, 94, 149, 40%) | #d55e954C | |
rgb(213, 94, 149, 60%) | #d55e9599 | |
rgb(213, 94, 149, 80%) | #d55e95CC | |
rgb(213, 94, 149, 100%) | #d55e95FF |
Saturated and desaturated colors of #d55e95
HSL Code | Preview |
---|---|
hsl(332, 10%, 60%) | |
hsl(332, 20%, 60%) | |
hsl(332, 40%, 60%) | |
hsl(332, 60%, 60%) | |
hsl(332, 80%, 60%) | |
hsl(332, 100%, 60%) |
#d55e95 Color Usage In CSS
body { color: #d55e95; } p { color: rgb(213, 94, 149); } header { border-bottom:1px solid #d55e95; }