#cc4725 Color
Color Codes | |
---|---|
Hex Code | #cc4725 |
RGB Code | rgb(204, 71, 37) |
HSL Code | hsl(12, 69%, 47%) |
#cc4725 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(204, 71, 37); }
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(12, 69%, 47%); }
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 #cc4725
RGB Code | Hex Code | Preview |
---|---|---|
rgb(204, 71, 37, 10%) | #cc47251a | |
rgb(204, 71, 37, 20%) | #cc472533 | |
rgb(204, 71, 37, 40%) | #cc47254C | |
rgb(204, 71, 37, 60%) | #cc472599 | |
rgb(204, 71, 37, 80%) | #cc4725CC | |
rgb(204, 71, 37, 100%) | #cc4725FF |
Saturated and desaturated colors of #cc4725
HSL Code | Preview |
---|---|
hsl(12, 10%, 47%) | |
hsl(12, 20%, 47%) | |
hsl(12, 40%, 47%) | |
hsl(12, 60%, 47%) | |
hsl(12, 80%, 47%) | |
hsl(12, 100%, 47%) |
#cc4725 Color Usage In CSS
body { color: #cc4725; } p { color: rgb(204, 71, 37); } header { border-bottom:1px solid #cc4725; }