#cd4032 Color
Color Codes | |
---|---|
Hex Code | #cd4032 |
RGB Code | rgb(205, 64, 50) |
HSL Code | hsl(5, 61%, 50%) |
#cd4032 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 64, 50); }
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(5, 61%, 50%); }
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 #cd4032
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 64, 50, 10%) | #cd40321a | |
rgb(205, 64, 50, 20%) | #cd403233 | |
rgb(205, 64, 50, 40%) | #cd40324C | |
rgb(205, 64, 50, 60%) | #cd403299 | |
rgb(205, 64, 50, 80%) | #cd4032CC | |
rgb(205, 64, 50, 100%) | #cd4032FF |
Saturated and desaturated colors of #cd4032
HSL Code | Preview |
---|---|
hsl(5, 10%, 50%) | |
hsl(5, 20%, 50%) | |
hsl(5, 40%, 50%) | |
hsl(5, 60%, 50%) | |
hsl(5, 80%, 50%) | |
hsl(5, 100%, 50%) |
#cd4032 Color Usage In CSS
body { color: #cd4032; } p { color: rgb(205, 64, 50); } header { border-bottom:1px solid #cd4032; }