#12882b Color
Color Codes | |
---|---|
Hex Code | #12882b |
RGB Code | rgb(18, 136, 43) |
HSL Code | hsl(133, 77%, 30%) |
#12882b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(18, 136, 43); }
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(133, 77%, 30%); }
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 #12882b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(18, 136, 43, 10%) | #12882b1a | |
rgb(18, 136, 43, 20%) | #12882b33 | |
rgb(18, 136, 43, 40%) | #12882b4C | |
rgb(18, 136, 43, 60%) | #12882b99 | |
rgb(18, 136, 43, 80%) | #12882bCC | |
rgb(18, 136, 43, 100%) | #12882bFF |
Saturated and desaturated colors of #12882b
HSL Code | Preview |
---|---|
hsl(133, 10%, 30%) | |
hsl(133, 20%, 30%) | |
hsl(133, 40%, 30%) | |
hsl(133, 60%, 30%) | |
hsl(133, 80%, 30%) | |
hsl(133, 100%, 30%) |
#12882b Color Usage In CSS
body { color: #12882b; } p { color: rgb(18, 136, 43); } header { border-bottom:1px solid #12882b; }