#3da130 Color
Color Codes | |
---|---|
Hex Code | #3da130 |
RGB Code | rgb(61, 161, 48) |
HSL Code | hsl(113, 54%, 41%) |
#3da130 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(61, 161, 48); }
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(113, 54%, 41%); }
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 #3da130
RGB Code | Hex Code | Preview |
---|---|---|
rgb(61, 161, 48, 10%) | #3da1301a | |
rgb(61, 161, 48, 20%) | #3da13033 | |
rgb(61, 161, 48, 40%) | #3da1304C | |
rgb(61, 161, 48, 60%) | #3da13099 | |
rgb(61, 161, 48, 80%) | #3da130CC | |
rgb(61, 161, 48, 100%) | #3da130FF |
Saturated and desaturated colors of #3da130
HSL Code | Preview |
---|---|
hsl(113, 10%, 41%) | |
hsl(113, 20%, 41%) | |
hsl(113, 40%, 41%) | |
hsl(113, 60%, 41%) | |
hsl(113, 80%, 41%) | |
hsl(113, 100%, 41%) |
#3da130 Color Usage In CSS
body { color: #3da130; } p { color: rgb(61, 161, 48); } header { border-bottom:1px solid #3da130; }