#c1cc77 Color
Color Codes | |
---|---|
Hex Code | #c1cc77 |
RGB Code | rgb(193, 204, 119) |
HSL Code | hsl(68, 45%, 63%) |
#c1cc77 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 204, 119); }
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(68, 45%, 63%); }
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 #c1cc77
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 204, 119, 10%) | #c1cc771a | |
rgb(193, 204, 119, 20%) | #c1cc7733 | |
rgb(193, 204, 119, 40%) | #c1cc774C | |
rgb(193, 204, 119, 60%) | #c1cc7799 | |
rgb(193, 204, 119, 80%) | #c1cc77CC | |
rgb(193, 204, 119, 100%) | #c1cc77FF |
Saturated and desaturated colors of #c1cc77
HSL Code | Preview |
---|---|
hsl(68, 10%, 63%) | |
hsl(68, 20%, 63%) | |
hsl(68, 40%, 63%) | |
hsl(68, 60%, 63%) | |
hsl(68, 80%, 63%) | |
hsl(68, 100%, 63%) |
#c1cc77 Color Usage In CSS
body { color: #c1cc77; } p { color: rgb(193, 204, 119); } header { border-bottom:1px solid #c1cc77; }