#16434c Color
Color Codes | |
---|---|
Hex Code | #16434c |
RGB Code | rgb(22, 67, 76) |
HSL Code | hsl(190, 55%, 19%) |
#16434c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(22, 67, 76); }
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(190, 55%, 19%); }
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 #16434c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(22, 67, 76, 10%) | #16434c1a | |
rgb(22, 67, 76, 20%) | #16434c33 | |
rgb(22, 67, 76, 40%) | #16434c4C | |
rgb(22, 67, 76, 60%) | #16434c99 | |
rgb(22, 67, 76, 80%) | #16434cCC | |
rgb(22, 67, 76, 100%) | #16434cFF |
Saturated and desaturated colors of #16434c
HSL Code | Preview |
---|---|
hsl(190, 10%, 19%) | |
hsl(190, 20%, 19%) | |
hsl(190, 40%, 19%) | |
hsl(190, 60%, 19%) | |
hsl(190, 80%, 19%) | |
hsl(190, 100%, 19%) |
#16434c Color Usage In CSS
body { color: #16434c; } p { color: rgb(22, 67, 76); } header { border-bottom:1px solid #16434c; }