#c47b54 Color
Color Codes | |
---|---|
Hex Code | #c47b54 |
RGB Code | rgb(196, 123, 84) |
HSL Code | hsl(21, 49%, 55%) |
#c47b54 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(196, 123, 84); }
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(21, 49%, 55%); }
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 #c47b54
RGB Code | Hex Code | Preview |
---|---|---|
rgb(196, 123, 84, 10%) | #c47b541a | |
rgb(196, 123, 84, 20%) | #c47b5433 | |
rgb(196, 123, 84, 40%) | #c47b544C | |
rgb(196, 123, 84, 60%) | #c47b5499 | |
rgb(196, 123, 84, 80%) | #c47b54CC | |
rgb(196, 123, 84, 100%) | #c47b54FF |
Saturated and desaturated colors of #c47b54
HSL Code | Preview |
---|---|
hsl(21, 10%, 55%) | |
hsl(21, 20%, 55%) | |
hsl(21, 40%, 55%) | |
hsl(21, 60%, 55%) | |
hsl(21, 80%, 55%) | |
hsl(21, 100%, 55%) |
#c47b54 Color Usage In CSS
body { color: #c47b54; } p { color: rgb(196, 123, 84); } header { border-bottom:1px solid #c47b54; }