#c6c183 Color
Color Codes | |
---|---|
Hex Code | #c6c183 |
RGB Code | rgb(198, 193, 131) |
HSL Code | hsl(56, 37%, 65%) |
#c6c183 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(198, 193, 131); }
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(56, 37%, 65%); }
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 #c6c183
RGB Code | Hex Code | Preview |
---|---|---|
rgb(198, 193, 131, 10%) | #c6c1831a | |
rgb(198, 193, 131, 20%) | #c6c18333 | |
rgb(198, 193, 131, 40%) | #c6c1834C | |
rgb(198, 193, 131, 60%) | #c6c18399 | |
rgb(198, 193, 131, 80%) | #c6c183CC | |
rgb(198, 193, 131, 100%) | #c6c183FF |
Saturated and desaturated colors of #c6c183
HSL Code | Preview |
---|---|
hsl(56, 10%, 65%) | |
hsl(56, 20%, 65%) | |
hsl(56, 40%, 65%) | |
hsl(56, 60%, 65%) | |
hsl(56, 80%, 65%) | |
hsl(56, 100%, 65%) |
#c6c183 Color Usage In CSS
body { color: #c6c183; } p { color: rgb(198, 193, 131); } header { border-bottom:1px solid #c6c183; }