#db4766 Color
Color Codes | |
---|---|
Hex Code | #db4766 |
RGB Code | rgb(219, 71, 102) |
HSL Code | hsl(347, 67%, 57%) |
#db4766 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 71, 102); }
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(347, 67%, 57%); }
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 #db4766
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 71, 102, 10%) | #db47661a | |
rgb(219, 71, 102, 20%) | #db476633 | |
rgb(219, 71, 102, 40%) | #db47664C | |
rgb(219, 71, 102, 60%) | #db476699 | |
rgb(219, 71, 102, 80%) | #db4766CC | |
rgb(219, 71, 102, 100%) | #db4766FF |
Saturated and desaturated colors of #db4766
HSL Code | Preview |
---|---|
hsl(347, 10%, 57%) | |
hsl(347, 20%, 57%) | |
hsl(347, 40%, 57%) | |
hsl(347, 60%, 57%) | |
hsl(347, 80%, 57%) | |
hsl(347, 100%, 57%) |
#db4766 Color Usage In CSS
body { color: #db4766; } p { color: rgb(219, 71, 102); } header { border-bottom:1px solid #db4766; }