#c67462 Color
Color Codes | |
---|---|
Hex Code | #c67462 |
RGB Code | rgb(198, 116, 98) |
HSL Code | hsl(11, 47%, 58%) |
#c67462 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(198, 116, 98); }
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(11, 47%, 58%); }
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 #c67462
RGB Code | Hex Code | Preview |
---|---|---|
rgb(198, 116, 98, 10%) | #c674621a | |
rgb(198, 116, 98, 20%) | #c6746233 | |
rgb(198, 116, 98, 40%) | #c674624C | |
rgb(198, 116, 98, 60%) | #c6746299 | |
rgb(198, 116, 98, 80%) | #c67462CC | |
rgb(198, 116, 98, 100%) | #c67462FF |
Saturated and desaturated colors of #c67462
HSL Code | Preview |
---|---|
hsl(11, 10%, 58%) | |
hsl(11, 20%, 58%) | |
hsl(11, 40%, 58%) | |
hsl(11, 60%, 58%) | |
hsl(11, 80%, 58%) | |
hsl(11, 100%, 58%) |
#c67462 Color Usage In CSS
body { color: #c67462; } p { color: rgb(198, 116, 98); } header { border-bottom:1px solid #c67462; }