#3fd05c Color
Color Codes | |
---|---|
Hex Code | #3fd05c |
RGB Code | rgb(63, 208, 92) |
HSL Code | hsl(132, 61%, 53%) |
#3fd05c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(63, 208, 92); }
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(132, 61%, 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 #3fd05c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(63, 208, 92, 10%) | #3fd05c1a | |
rgb(63, 208, 92, 20%) | #3fd05c33 | |
rgb(63, 208, 92, 40%) | #3fd05c4C | |
rgb(63, 208, 92, 60%) | #3fd05c99 | |
rgb(63, 208, 92, 80%) | #3fd05cCC | |
rgb(63, 208, 92, 100%) | #3fd05cFF |
Saturated and desaturated colors of #3fd05c
HSL Code | Preview |
---|---|
hsl(132, 10%, 53%) | |
hsl(132, 20%, 53%) | |
hsl(132, 40%, 53%) | |
hsl(132, 60%, 53%) | |
hsl(132, 80%, 53%) | |
hsl(132, 100%, 53%) |
#3fd05c Color Usage In CSS
body { color: #3fd05c; } p { color: rgb(63, 208, 92); } header { border-bottom:1px solid #3fd05c; }