#061642 Color
Color Codes | |
---|---|
Hex Code | #061642 |
RGB Code | rgb(06, 22, 66) |
HSL Code | hsl(224, 83%, 14%) |
#061642 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 22, 66); }
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(224, 83%, 14%); }
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 #061642
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 22, 66, 10%) | #0616421a | |
rgb(06, 22, 66, 20%) | #06164233 | |
rgb(06, 22, 66, 40%) | #0616424C | |
rgb(06, 22, 66, 60%) | #06164299 | |
rgb(06, 22, 66, 80%) | #061642CC | |
rgb(06, 22, 66, 100%) | #061642FF |
Saturated and desaturated colors of #061642
HSL Code | Preview |
---|---|
hsl(224, 10%, 14%) | |
hsl(224, 20%, 14%) | |
hsl(224, 40%, 14%) | |
hsl(224, 60%, 14%) | |
hsl(224, 80%, 14%) | |
hsl(224, 100%, 14%) |
#061642 Color Usage In CSS
body { color: #061642; } p { color: rgb(06, 22, 66); } header { border-bottom:1px solid #061642; }