#106c84 Color
Color Codes | |
---|---|
Hex Code | #106c84 |
RGB Code | rgb(16, 108, 132) |
HSL Code | hsl(192, 78%, 29%) |
#106c84 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(16, 108, 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(192, 78%, 29%); }
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 #106c84
RGB Code | Hex Code | Preview |
---|---|---|
rgb(16, 108, 132, 10%) | #106c841a | |
rgb(16, 108, 132, 20%) | #106c8433 | |
rgb(16, 108, 132, 40%) | #106c844C | |
rgb(16, 108, 132, 60%) | #106c8499 | |
rgb(16, 108, 132, 80%) | #106c84CC | |
rgb(16, 108, 132, 100%) | #106c84FF |
Saturated and desaturated colors of #106c84
HSL Code | Preview |
---|---|
hsl(192, 10%, 29%) | |
hsl(192, 20%, 29%) | |
hsl(192, 40%, 29%) | |
hsl(192, 60%, 29%) | |
hsl(192, 80%, 29%) | |
hsl(192, 100%, 29%) |
#106c84 Color Usage In CSS
body { color: #106c84; } p { color: rgb(16, 108, 132); } header { border-bottom:1px solid #106c84; }