#c3c69b Color
Color Codes | |
---|---|
Hex Code | #c3c69b |
RGB Code | rgb(195, 198, 155) |
HSL Code | hsl(64, 27%, 69%) |
#c3c69b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 198, 155); }
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(64, 27%, 69%); }
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 #c3c69b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 198, 155, 10%) | #c3c69b1a | |
rgb(195, 198, 155, 20%) | #c3c69b33 | |
rgb(195, 198, 155, 40%) | #c3c69b4C | |
rgb(195, 198, 155, 60%) | #c3c69b99 | |
rgb(195, 198, 155, 80%) | #c3c69bCC | |
rgb(195, 198, 155, 100%) | #c3c69bFF |
Saturated and desaturated colors of #c3c69b
HSL Code | Preview |
---|---|
hsl(64, 10%, 69%) | |
hsl(64, 20%, 69%) | |
hsl(64, 40%, 69%) | |
hsl(64, 60%, 69%) | |
hsl(64, 80%, 69%) | |
hsl(64, 100%, 69%) |
#c3c69b Color Usage In CSS
body { color: #c3c69b; } p { color: rgb(195, 198, 155); } header { border-bottom:1px solid #c3c69b; }