#729270 Color
Color Codes | |
---|---|
Hex Code | #729270 |
RGB Code | rgb(114, 146, 112) |
HSL Code | hsl(116, 13%, 51%) |
#729270 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 146, 112); }
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(116, 13%, 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 #729270
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 146, 112, 10%) | #7292701a | |
rgb(114, 146, 112, 20%) | #72927033 | |
rgb(114, 146, 112, 40%) | #7292704C | |
rgb(114, 146, 112, 60%) | #72927099 | |
rgb(114, 146, 112, 80%) | #729270CC | |
rgb(114, 146, 112, 100%) | #729270FF |
Saturated and desaturated colors of #729270
HSL Code | Preview |
---|---|
hsl(116, 10%, 51%) | |
hsl(116, 20%, 51%) | |
hsl(116, 40%, 51%) | |
hsl(116, 60%, 51%) | |
hsl(116, 80%, 51%) | |
hsl(116, 100%, 51%) |
#729270 Color Usage In CSS
body { color: #729270; } p { color: rgb(114, 146, 112); } header { border-bottom:1px solid #729270; }