#3db061 Color
Color Codes | |
---|---|
Hex Code | #3db061 |
RGB Code | rgb(61, 176, 97) |
HSL Code | hsl(139, 49%, 46%) |
#3db061 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(61, 176, 97); }
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(139, 49%, 46%); }
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 #3db061
RGB Code | Hex Code | Preview |
---|---|---|
rgb(61, 176, 97, 10%) | #3db0611a | |
rgb(61, 176, 97, 20%) | #3db06133 | |
rgb(61, 176, 97, 40%) | #3db0614C | |
rgb(61, 176, 97, 60%) | #3db06199 | |
rgb(61, 176, 97, 80%) | #3db061CC | |
rgb(61, 176, 97, 100%) | #3db061FF |
Saturated and desaturated colors of #3db061
HSL Code | Preview |
---|---|
hsl(139, 10%, 46%) | |
hsl(139, 20%, 46%) | |
hsl(139, 40%, 46%) | |
hsl(139, 60%, 46%) | |
hsl(139, 80%, 46%) | |
hsl(139, 100%, 46%) |
#3db061 Color Usage In CSS
body { color: #3db061; } p { color: rgb(61, 176, 97); } header { border-bottom:1px solid #3db061; }