#6dfb3c Color
Color Codes | |
---|---|
Hex Code | #6dfb3c |
RGB Code | rgb(109, 251, 60) |
HSL Code | hsl(105, 96%, 61%) |
#6dfb3c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(109, 251, 60); }
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(105, 96%, 61%); }
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 #6dfb3c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(109, 251, 60, 10%) | #6dfb3c1a | |
rgb(109, 251, 60, 20%) | #6dfb3c33 | |
rgb(109, 251, 60, 40%) | #6dfb3c4C | |
rgb(109, 251, 60, 60%) | #6dfb3c99 | |
rgb(109, 251, 60, 80%) | #6dfb3cCC | |
rgb(109, 251, 60, 100%) | #6dfb3cFF |
Saturated and desaturated colors of #6dfb3c
HSL Code | Preview |
---|---|
hsl(105, 10%, 61%) | |
hsl(105, 20%, 61%) | |
hsl(105, 40%, 61%) | |
hsl(105, 60%, 61%) | |
hsl(105, 80%, 61%) | |
hsl(105, 100%, 61%) |
#6dfb3c Color Usage In CSS
body { color: #6dfb3c; } p { color: rgb(109, 251, 60); } header { border-bottom:1px solid #6dfb3c; }