#c89a57 Color
Color Codes | |
---|---|
Hex Code | #c89a57 |
RGB Code | rgb(200, 154, 87) |
HSL Code | hsl(36, 51%, 56%) |
#c89a57 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 154, 87); }
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, 51%, 56%); }
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 #c89a57
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 154, 87, 10%) | #c89a571a | |
rgb(200, 154, 87, 20%) | #c89a5733 | |
rgb(200, 154, 87, 40%) | #c89a574C | |
rgb(200, 154, 87, 60%) | #c89a5799 | |
rgb(200, 154, 87, 80%) | #c89a57CC | |
rgb(200, 154, 87, 100%) | #c89a57FF |
Saturated and desaturated colors of #c89a57
HSL Code | Preview |
---|---|
hsl(36, 10%, 56%) | |
hsl(36, 20%, 56%) | |
hsl(36, 40%, 56%) | |
hsl(36, 60%, 56%) | |
hsl(36, 80%, 56%) | |
hsl(36, 100%, 56%) |
#c89a57 Color Usage In CSS
body { color: #c89a57; } p { color: rgb(200, 154, 87); } header { border-bottom:1px solid #c89a57; }