#739d84 Color
Color Codes | |
---|---|
Hex Code | #739d84 |
RGB Code | rgb(115, 157, 132) |
HSL Code | hsl(144, 18%, 53%) |
#739d84 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(115, 157, 132); }
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(144, 18%, 53%); }
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 #739d84
RGB Code | Hex Code | Preview |
---|---|---|
rgb(115, 157, 132, 10%) | #739d841a | |
rgb(115, 157, 132, 20%) | #739d8433 | |
rgb(115, 157, 132, 40%) | #739d844C | |
rgb(115, 157, 132, 60%) | #739d8499 | |
rgb(115, 157, 132, 80%) | #739d84CC | |
rgb(115, 157, 132, 100%) | #739d84FF |
Saturated and desaturated colors of #739d84
HSL Code | Preview |
---|---|
hsl(144, 10%, 53%) | |
hsl(144, 20%, 53%) | |
hsl(144, 40%, 53%) | |
hsl(144, 60%, 53%) | |
hsl(144, 80%, 53%) | |
hsl(144, 100%, 53%) |
#739d84 Color Usage In CSS
body { color: #739d84; } p { color: rgb(115, 157, 132); } header { border-bottom:1px solid #739d84; }