#d4455e Color
Color Codes | |
---|---|
Hex Code | #d4455e |
RGB Code | rgb(212, 69, 94) |
HSL Code | hsl(350, 62%, 55%) |
#d4455e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(212, 69, 94); }
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(350, 62%, 55%); }
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 #d4455e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(212, 69, 94, 10%) | #d4455e1a | |
rgb(212, 69, 94, 20%) | #d4455e33 | |
rgb(212, 69, 94, 40%) | #d4455e4C | |
rgb(212, 69, 94, 60%) | #d4455e99 | |
rgb(212, 69, 94, 80%) | #d4455eCC | |
rgb(212, 69, 94, 100%) | #d4455eFF |
Saturated and desaturated colors of #d4455e
HSL Code | Preview |
---|---|
hsl(350, 10%, 55%) | |
hsl(350, 20%, 55%) | |
hsl(350, 40%, 55%) | |
hsl(350, 60%, 55%) | |
hsl(350, 80%, 55%) | |
hsl(350, 100%, 55%) |
#d4455e Color Usage In CSS
body { color: #d4455e; } p { color: rgb(212, 69, 94); } header { border-bottom:1px solid #d4455e; }