#c8d565 Color
Color Codes | |
---|---|
Hex Code | #c8d565 |
RGB Code | rgb(200, 213, 101) |
HSL Code | hsl(67, 57%, 62%) |
#c8d565 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 213, 101); }
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(67, 57%, 62%); }
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 #c8d565
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 213, 101, 10%) | #c8d5651a | |
rgb(200, 213, 101, 20%) | #c8d56533 | |
rgb(200, 213, 101, 40%) | #c8d5654C | |
rgb(200, 213, 101, 60%) | #c8d56599 | |
rgb(200, 213, 101, 80%) | #c8d565CC | |
rgb(200, 213, 101, 100%) | #c8d565FF |
Saturated and desaturated colors of #c8d565
HSL Code | Preview |
---|---|
hsl(67, 10%, 62%) | |
hsl(67, 20%, 62%) | |
hsl(67, 40%, 62%) | |
hsl(67, 60%, 62%) | |
hsl(67, 80%, 62%) | |
hsl(67, 100%, 62%) |
#c8d565 Color Usage In CSS
body { color: #c8d565; } p { color: rgb(200, 213, 101); } header { border-bottom:1px solid #c8d565; }