#c5dc8d Color
Color Codes | |
---|---|
Hex Code | #c5dc8d |
RGB Code | rgb(197, 220, 141) |
HSL Code | hsl(77, 53%, 71%) |
#c5dc8d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(197, 220, 141); }
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(77, 53%, 71%); }
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 #c5dc8d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(197, 220, 141, 10%) | #c5dc8d1a | |
rgb(197, 220, 141, 20%) | #c5dc8d33 | |
rgb(197, 220, 141, 40%) | #c5dc8d4C | |
rgb(197, 220, 141, 60%) | #c5dc8d99 | |
rgb(197, 220, 141, 80%) | #c5dc8dCC | |
rgb(197, 220, 141, 100%) | #c5dc8dFF |
Saturated and desaturated colors of #c5dc8d
HSL Code | Preview |
---|---|
hsl(77, 10%, 71%) | |
hsl(77, 20%, 71%) | |
hsl(77, 40%, 71%) | |
hsl(77, 60%, 71%) | |
hsl(77, 80%, 71%) | |
hsl(77, 100%, 71%) |
#c5dc8d Color Usage In CSS
body { color: #c5dc8d; } p { color: rgb(197, 220, 141); } header { border-bottom:1px solid #c5dc8d; }