#068ebd Color
Color Codes | |
---|---|
Hex Code | #068ebd |
RGB Code | rgb(06, 142, 189) |
HSL Code | hsl(195, 94%, 38%) |
#068ebd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 142, 189); }
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, 94%, 38%); }
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 #068ebd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 142, 189, 10%) | #068ebd1a | |
rgb(06, 142, 189, 20%) | #068ebd33 | |
rgb(06, 142, 189, 40%) | #068ebd4C | |
rgb(06, 142, 189, 60%) | #068ebd99 | |
rgb(06, 142, 189, 80%) | #068ebdCC | |
rgb(06, 142, 189, 100%) | #068ebdFF |
Saturated and desaturated colors of #068ebd
HSL Code | Preview |
---|---|
hsl(195, 10%, 38%) | |
hsl(195, 20%, 38%) | |
hsl(195, 40%, 38%) | |
hsl(195, 60%, 38%) | |
hsl(195, 80%, 38%) | |
hsl(195, 100%, 38%) |
#068ebd Color Usage In CSS
body { color: #068ebd; } p { color: rgb(06, 142, 189); } header { border-bottom:1px solid #068ebd; }