#99b174 Color
Color Codes | |
---|---|
Hex Code | #99b174 |
RGB Code | rgb(153, 177, 116) |
HSL Code | hsl(84, 28%, 57%) |
#99b174 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 177, 116); }
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(84, 28%, 57%); }
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 #99b174
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 177, 116, 10%) | #99b1741a | |
rgb(153, 177, 116, 20%) | #99b17433 | |
rgb(153, 177, 116, 40%) | #99b1744C | |
rgb(153, 177, 116, 60%) | #99b17499 | |
rgb(153, 177, 116, 80%) | #99b174CC | |
rgb(153, 177, 116, 100%) | #99b174FF |
Saturated and desaturated colors of #99b174
HSL Code | Preview |
---|---|
hsl(84, 10%, 57%) | |
hsl(84, 20%, 57%) | |
hsl(84, 40%, 57%) | |
hsl(84, 60%, 57%) | |
hsl(84, 80%, 57%) | |
hsl(84, 100%, 57%) |
#99b174 Color Usage In CSS
body { color: #99b174; } p { color: rgb(153, 177, 116); } header { border-bottom:1px solid #99b174; }