#c4ee07 Color
Color Codes | |
---|---|
Hex Code | #c4ee07 |
RGB Code | rgb(196, 238, 07) |
HSL Code | hsl(71, 94%, 48%) |
#c4ee07 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(196, 238, 07); }
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(71, 94%, 48%); }
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 #c4ee07
RGB Code | Hex Code | Preview |
---|---|---|
rgb(196, 238, 07, 10%) | #c4ee071a | |
rgb(196, 238, 07, 20%) | #c4ee0733 | |
rgb(196, 238, 07, 40%) | #c4ee074C | |
rgb(196, 238, 07, 60%) | #c4ee0799 | |
rgb(196, 238, 07, 80%) | #c4ee07CC | |
rgb(196, 238, 07, 100%) | #c4ee07FF |
Saturated and desaturated colors of #c4ee07
HSL Code | Preview |
---|---|
hsl(71, 10%, 48%) | |
hsl(71, 20%, 48%) | |
hsl(71, 40%, 48%) | |
hsl(71, 60%, 48%) | |
hsl(71, 80%, 48%) | |
hsl(71, 100%, 48%) |
#c4ee07 Color Usage In CSS
body { color: #c4ee07; } p { color: rgb(196, 238, 07); } header { border-bottom:1px solid #c4ee07; }