#db5781 Color
Color Codes | |
---|---|
Hex Code | #db5781 |
RGB Code | rgb(219, 87, 129) |
HSL Code | hsl(341, 65%, 60%) |
#db5781 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(219, 87, 129); }
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(341, 65%, 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 #db5781
RGB Code | Hex Code | Preview |
---|---|---|
rgb(219, 87, 129, 10%) | #db57811a | |
rgb(219, 87, 129, 20%) | #db578133 | |
rgb(219, 87, 129, 40%) | #db57814C | |
rgb(219, 87, 129, 60%) | #db578199 | |
rgb(219, 87, 129, 80%) | #db5781CC | |
rgb(219, 87, 129, 100%) | #db5781FF |
Saturated and desaturated colors of #db5781
HSL Code | Preview |
---|---|
hsl(341, 10%, 60%) | |
hsl(341, 20%, 60%) | |
hsl(341, 40%, 60%) | |
hsl(341, 60%, 60%) | |
hsl(341, 80%, 60%) | |
hsl(341, 100%, 60%) |
#db5781 Color Usage In CSS
body { color: #db5781; } p { color: rgb(219, 87, 129); } header { border-bottom:1px solid #db5781; }