#c8e527 Color
Color Codes | |
---|---|
Hex Code | #c8e527 |
RGB Code | rgb(200, 229, 39) |
HSL Code | hsl(69, 79%, 53%) |
#c8e527 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 229, 39); }
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(69, 79%, 53%); }
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 #c8e527
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 229, 39, 10%) | #c8e5271a | |
rgb(200, 229, 39, 20%) | #c8e52733 | |
rgb(200, 229, 39, 40%) | #c8e5274C | |
rgb(200, 229, 39, 60%) | #c8e52799 | |
rgb(200, 229, 39, 80%) | #c8e527CC | |
rgb(200, 229, 39, 100%) | #c8e527FF |
Saturated and desaturated colors of #c8e527
HSL Code | Preview |
---|---|
hsl(69, 10%, 53%) | |
hsl(69, 20%, 53%) | |
hsl(69, 40%, 53%) | |
hsl(69, 60%, 53%) | |
hsl(69, 80%, 53%) | |
hsl(69, 100%, 53%) |
#c8e527 Color Usage In CSS
body { color: #c8e527; } p { color: rgb(200, 229, 39); } header { border-bottom:1px solid #c8e527; }