#cd3800 Color
Color Codes | |
---|---|
Hex Code | #cd3800 |
RGB Code | rgb(205, 56, 00) |
HSL Code | hsl(16, 100%, 40%) |
#cd3800 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 56, 00); }
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(16, 100%, 40%); }
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 #cd3800
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 56, 00, 10%) | #cd38001a | |
rgb(205, 56, 00, 20%) | #cd380033 | |
rgb(205, 56, 00, 40%) | #cd38004C | |
rgb(205, 56, 00, 60%) | #cd380099 | |
rgb(205, 56, 00, 80%) | #cd3800CC | |
rgb(205, 56, 00, 100%) | #cd3800FF |
Saturated and desaturated colors of #cd3800
HSL Code | Preview |
---|---|
hsl(16, 10%, 40%) | |
hsl(16, 20%, 40%) | |
hsl(16, 40%, 40%) | |
hsl(16, 60%, 40%) | |
hsl(16, 80%, 40%) | |
hsl(16, 100%, 40%) |
#cd3800 Color Usage In CSS
body { color: #cd3800; } p { color: rgb(205, 56, 00); } header { border-bottom:1px solid #cd3800; }