#16b674 Color
Color Codes | |
---|---|
Hex Code | #16b674 |
RGB Code | rgb(22, 182, 116) |
HSL Code | hsl(155, 78%, 40%) |
#16b674 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(22, 182, 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(155, 78%, 40%); }
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 #16b674
RGB Code | Hex Code | Preview |
---|---|---|
rgb(22, 182, 116, 10%) | #16b6741a | |
rgb(22, 182, 116, 20%) | #16b67433 | |
rgb(22, 182, 116, 40%) | #16b6744C | |
rgb(22, 182, 116, 60%) | #16b67499 | |
rgb(22, 182, 116, 80%) | #16b674CC | |
rgb(22, 182, 116, 100%) | #16b674FF |
Saturated and desaturated colors of #16b674
HSL Code | Preview |
---|---|
hsl(155, 10%, 40%) | |
hsl(155, 20%, 40%) | |
hsl(155, 40%, 40%) | |
hsl(155, 60%, 40%) | |
hsl(155, 80%, 40%) | |
hsl(155, 100%, 40%) |
#16b674 Color Usage In CSS
body { color: #16b674; } p { color: rgb(22, 182, 116); } header { border-bottom:1px solid #16b674; }