#23702c Color
Color Codes | |
---|---|
Hex Code | #23702c |
RGB Code | rgb(35, 112, 44) |
HSL Code | hsl(127, 52%, 29%) |
#23702c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 112, 44); }
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(127, 52%, 29%); }
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 #23702c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 112, 44, 10%) | #23702c1a | |
rgb(35, 112, 44, 20%) | #23702c33 | |
rgb(35, 112, 44, 40%) | #23702c4C | |
rgb(35, 112, 44, 60%) | #23702c99 | |
rgb(35, 112, 44, 80%) | #23702cCC | |
rgb(35, 112, 44, 100%) | #23702cFF |
Saturated and desaturated colors of #23702c
HSL Code | Preview |
---|---|
hsl(127, 10%, 29%) | |
hsl(127, 20%, 29%) | |
hsl(127, 40%, 29%) | |
hsl(127, 60%, 29%) | |
hsl(127, 80%, 29%) | |
hsl(127, 100%, 29%) |
#23702c Color Usage In CSS
body { color: #23702c; } p { color: rgb(35, 112, 44); } header { border-bottom:1px solid #23702c; }