#c98725 Color
Color Codes | |
---|---|
Hex Code | #c98725 |
RGB Code | rgb(201, 135, 37) |
HSL Code | hsl(36, 69%, 47%) |
#c98725 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 135, 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(36, 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 #c98725
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 135, 37, 10%) | #c987251a | |
rgb(201, 135, 37, 20%) | #c9872533 | |
rgb(201, 135, 37, 40%) | #c987254C | |
rgb(201, 135, 37, 60%) | #c9872599 | |
rgb(201, 135, 37, 80%) | #c98725CC | |
rgb(201, 135, 37, 100%) | #c98725FF |
Saturated and desaturated colors of #c98725
HSL Code | Preview |
---|---|
hsl(36, 10%, 47%) | |
hsl(36, 20%, 47%) | |
hsl(36, 40%, 47%) | |
hsl(36, 60%, 47%) | |
hsl(36, 80%, 47%) | |
hsl(36, 100%, 47%) |
#c98725 Color Usage In CSS
body { color: #c98725; } p { color: rgb(201, 135, 37); } header { border-bottom:1px solid #c98725; }