#c9f806 Color
Color Codes | |
---|---|
Hex Code | #c9f806 |
RGB Code | rgb(201, 248, 06) |
HSL Code | hsl(72, 95%, 50%) |
#c9f806 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 248, 06); }
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(72, 95%, 50%); }
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 #c9f806
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 248, 06, 10%) | #c9f8061a | |
rgb(201, 248, 06, 20%) | #c9f80633 | |
rgb(201, 248, 06, 40%) | #c9f8064C | |
rgb(201, 248, 06, 60%) | #c9f80699 | |
rgb(201, 248, 06, 80%) | #c9f806CC | |
rgb(201, 248, 06, 100%) | #c9f806FF |
Saturated and desaturated colors of #c9f806
HSL Code | Preview |
---|---|
hsl(72, 10%, 50%) | |
hsl(72, 20%, 50%) | |
hsl(72, 40%, 50%) | |
hsl(72, 60%, 50%) | |
hsl(72, 80%, 50%) | |
hsl(72, 100%, 50%) |
#c9f806 Color Usage In CSS
body { color: #c9f806; } p { color: rgb(201, 248, 06); } header { border-bottom:1px solid #c9f806; }