#d32739 Color
Color Codes | |
---|---|
Hex Code | #d32739 |
RGB Code | rgb(211, 39, 57) |
HSL Code | hsl(354, 69%, 49%) |
#d32739 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 39, 57); }
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(354, 69%, 49%); }
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 #d32739
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 39, 57, 10%) | #d327391a | |
rgb(211, 39, 57, 20%) | #d3273933 | |
rgb(211, 39, 57, 40%) | #d327394C | |
rgb(211, 39, 57, 60%) | #d3273999 | |
rgb(211, 39, 57, 80%) | #d32739CC | |
rgb(211, 39, 57, 100%) | #d32739FF |
Saturated and desaturated colors of #d32739
HSL Code | Preview |
---|---|
hsl(354, 10%, 49%) | |
hsl(354, 20%, 49%) | |
hsl(354, 40%, 49%) | |
hsl(354, 60%, 49%) | |
hsl(354, 80%, 49%) | |
hsl(354, 100%, 49%) |
#d32739 Color Usage In CSS
body { color: #d32739; } p { color: rgb(211, 39, 57); } header { border-bottom:1px solid #d32739; }