#065662 Color
Color Codes | |
---|---|
Hex Code | #065662 |
RGB Code | rgb(06, 86, 98) |
HSL Code | hsl(188, 88%, 20%) |
#065662 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 86, 98); }
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(188, 88%, 20%); }
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 #065662
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 86, 98, 10%) | #0656621a | |
rgb(06, 86, 98, 20%) | #06566233 | |
rgb(06, 86, 98, 40%) | #0656624C | |
rgb(06, 86, 98, 60%) | #06566299 | |
rgb(06, 86, 98, 80%) | #065662CC | |
rgb(06, 86, 98, 100%) | #065662FF |
Saturated and desaturated colors of #065662
HSL Code | Preview |
---|---|
hsl(188, 10%, 20%) | |
hsl(188, 20%, 20%) | |
hsl(188, 40%, 20%) | |
hsl(188, 60%, 20%) | |
hsl(188, 80%, 20%) | |
hsl(188, 100%, 20%) |
#065662 Color Usage In CSS
body { color: #065662; } p { color: rgb(06, 86, 98); } header { border-bottom:1px solid #065662; }