#46c046 Color
Color Codes | |
---|---|
Hex Code | #46c046 |
RGB Code | rgb(70, 192, 70) |
HSL Code | hsl(120, 49%, 51%) |
#46c046 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(70, 192, 70); }
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(120, 49%, 51%); }
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 #46c046
RGB Code | Hex Code | Preview |
---|---|---|
rgb(70, 192, 70, 10%) | #46c0461a | |
rgb(70, 192, 70, 20%) | #46c04633 | |
rgb(70, 192, 70, 40%) | #46c0464C | |
rgb(70, 192, 70, 60%) | #46c04699 | |
rgb(70, 192, 70, 80%) | #46c046CC | |
rgb(70, 192, 70, 100%) | #46c046FF |
Saturated and desaturated colors of #46c046
HSL Code | Preview |
---|---|
hsl(120, 10%, 51%) | |
hsl(120, 20%, 51%) | |
hsl(120, 40%, 51%) | |
hsl(120, 60%, 51%) | |
hsl(120, 80%, 51%) | |
hsl(120, 100%, 51%) |
#46c046 Color Usage In CSS
body { color: #46c046; } p { color: rgb(70, 192, 70); } header { border-bottom:1px solid #46c046; }