#61cc02 Color
Color Codes | |
---|---|
Hex Code | #61cc02 |
RGB Code | rgb(97, 204, 02) |
HSL Code | hsl(92, 98%, 40%) |
#61cc02 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 204, 02); }
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(92, 98%, 40%); }
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 #61cc02
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 204, 02, 10%) | #61cc021a | |
rgb(97, 204, 02, 20%) | #61cc0233 | |
rgb(97, 204, 02, 40%) | #61cc024C | |
rgb(97, 204, 02, 60%) | #61cc0299 | |
rgb(97, 204, 02, 80%) | #61cc02CC | |
rgb(97, 204, 02, 100%) | #61cc02FF |
Saturated and desaturated colors of #61cc02
HSL Code | Preview |
---|---|
hsl(92, 10%, 40%) | |
hsl(92, 20%, 40%) | |
hsl(92, 40%, 40%) | |
hsl(92, 60%, 40%) | |
hsl(92, 80%, 40%) | |
hsl(92, 100%, 40%) |
#61cc02 Color Usage In CSS
body { color: #61cc02; } p { color: rgb(97, 204, 02); } header { border-bottom:1px solid #61cc02; }