#c0f990 Color
Color Codes | |
---|---|
Hex Code | #c0f990 |
RGB Code | rgb(192, 249, 144) |
HSL Code | hsl(93, 90%, 77%) |
#c0f990 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(192, 249, 144); }
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(93, 90%, 77%); }
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 #c0f990
RGB Code | Hex Code | Preview |
---|---|---|
rgb(192, 249, 144, 10%) | #c0f9901a | |
rgb(192, 249, 144, 20%) | #c0f99033 | |
rgb(192, 249, 144, 40%) | #c0f9904C | |
rgb(192, 249, 144, 60%) | #c0f99099 | |
rgb(192, 249, 144, 80%) | #c0f990CC | |
rgb(192, 249, 144, 100%) | #c0f990FF |
Saturated and desaturated colors of #c0f990
HSL Code | Preview |
---|---|
hsl(93, 10%, 77%) | |
hsl(93, 20%, 77%) | |
hsl(93, 40%, 77%) | |
hsl(93, 60%, 77%) | |
hsl(93, 80%, 77%) | |
hsl(93, 100%, 77%) |
#c0f990 Color Usage In CSS
body { color: #c0f990; } p { color: rgb(192, 249, 144); } header { border-bottom:1px solid #c0f990; }