#c6e264 Color
Color Codes | |
---|---|
Hex Code | #c6e264 |
RGB Code | rgb(198, 226, 100) |
HSL Code | hsl(73, 68%, 64%) |
#c6e264 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(198, 226, 100); }
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(73, 68%, 64%); }
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 #c6e264
RGB Code | Hex Code | Preview |
---|---|---|
rgb(198, 226, 100, 10%) | #c6e2641a | |
rgb(198, 226, 100, 20%) | #c6e26433 | |
rgb(198, 226, 100, 40%) | #c6e2644C | |
rgb(198, 226, 100, 60%) | #c6e26499 | |
rgb(198, 226, 100, 80%) | #c6e264CC | |
rgb(198, 226, 100, 100%) | #c6e264FF |
Saturated and desaturated colors of #c6e264
HSL Code | Preview |
---|---|
hsl(73, 10%, 64%) | |
hsl(73, 20%, 64%) | |
hsl(73, 40%, 64%) | |
hsl(73, 60%, 64%) | |
hsl(73, 80%, 64%) | |
hsl(73, 100%, 64%) |
#c6e264 Color Usage In CSS
body { color: #c6e264; } p { color: rgb(198, 226, 100); } header { border-bottom:1px solid #c6e264; }