#d76fba Color
Color Codes | |
---|---|
Hex Code | #d76fba |
RGB Code | rgb(215, 111, 186) |
HSL Code | hsl(317, 57%, 64%) |
#d76fba Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(215, 111, 186); }
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(317, 57%, 64%); }
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 #d76fba
RGB Code | Hex Code | Preview |
---|---|---|
rgb(215, 111, 186, 10%) | #d76fba1a | |
rgb(215, 111, 186, 20%) | #d76fba33 | |
rgb(215, 111, 186, 40%) | #d76fba4C | |
rgb(215, 111, 186, 60%) | #d76fba99 | |
rgb(215, 111, 186, 80%) | #d76fbaCC | |
rgb(215, 111, 186, 100%) | #d76fbaFF |
Saturated and desaturated colors of #d76fba
HSL Code | Preview |
---|---|
hsl(317, 10%, 64%) | |
hsl(317, 20%, 64%) | |
hsl(317, 40%, 64%) | |
hsl(317, 60%, 64%) | |
hsl(317, 80%, 64%) | |
hsl(317, 100%, 64%) |
#d76fba Color Usage In CSS
body { color: #d76fba; } p { color: rgb(215, 111, 186); } header { border-bottom:1px solid #d76fba; }