#129727 Color
Color Codes | |
---|---|
Hex Code | #129727 |
RGB Code | rgb(18, 151, 39) |
HSL Code | hsl(129, 79%, 33%) |
#129727 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(18, 151, 39); }
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(129, 79%, 33%); }
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 #129727
RGB Code | Hex Code | Preview |
---|---|---|
rgb(18, 151, 39, 10%) | #1297271a | |
rgb(18, 151, 39, 20%) | #12972733 | |
rgb(18, 151, 39, 40%) | #1297274C | |
rgb(18, 151, 39, 60%) | #12972799 | |
rgb(18, 151, 39, 80%) | #129727CC | |
rgb(18, 151, 39, 100%) | #129727FF |
Saturated and desaturated colors of #129727
HSL Code | Preview |
---|---|
hsl(129, 10%, 33%) | |
hsl(129, 20%, 33%) | |
hsl(129, 40%, 33%) | |
hsl(129, 60%, 33%) | |
hsl(129, 80%, 33%) | |
hsl(129, 100%, 33%) |
#129727 Color Usage In CSS
body { color: #129727; } p { color: rgb(18, 151, 39); } header { border-bottom:1px solid #129727; }