#06516b Color
Color Codes | |
---|---|
Hex Code | #06516b |
RGB Code | rgb(06, 81, 107) |
HSL Code | hsl(195, 89%, 22%) |
#06516b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 81, 107); }
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(195, 89%, 22%); }
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 #06516b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 81, 107, 10%) | #06516b1a | |
rgb(06, 81, 107, 20%) | #06516b33 | |
rgb(06, 81, 107, 40%) | #06516b4C | |
rgb(06, 81, 107, 60%) | #06516b99 | |
rgb(06, 81, 107, 80%) | #06516bCC | |
rgb(06, 81, 107, 100%) | #06516bFF |
Saturated and desaturated colors of #06516b
HSL Code | Preview |
---|---|
hsl(195, 10%, 22%) | |
hsl(195, 20%, 22%) | |
hsl(195, 40%, 22%) | |
hsl(195, 60%, 22%) | |
hsl(195, 80%, 22%) | |
hsl(195, 100%, 22%) |
#06516b Color Usage In CSS
body { color: #06516b; } p { color: rgb(06, 81, 107); } header { border-bottom:1px solid #06516b; }