#3ca35d Color
Color Codes | |
---|---|
Hex Code | #3ca35d |
RGB Code | rgb(60, 163, 93) |
HSL Code | hsl(139, 46%, 44%) |
#3ca35d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(60, 163, 93); }
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, 46%, 44%); }
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 #3ca35d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(60, 163, 93, 10%) | #3ca35d1a | |
rgb(60, 163, 93, 20%) | #3ca35d33 | |
rgb(60, 163, 93, 40%) | #3ca35d4C | |
rgb(60, 163, 93, 60%) | #3ca35d99 | |
rgb(60, 163, 93, 80%) | #3ca35dCC | |
rgb(60, 163, 93, 100%) | #3ca35dFF |
Saturated and desaturated colors of #3ca35d
HSL Code | Preview |
---|---|
hsl(139, 10%, 44%) | |
hsl(139, 20%, 44%) | |
hsl(139, 40%, 44%) | |
hsl(139, 60%, 44%) | |
hsl(139, 80%, 44%) | |
hsl(139, 100%, 44%) |
#3ca35d Color Usage In CSS
body { color: #3ca35d; } p { color: rgb(60, 163, 93); } header { border-bottom:1px solid #3ca35d; }