#0e72bc Color
Color Codes | |
---|---|
Hex Code | #0e72bc |
RGB Code | rgb(14, 114, 188) |
HSL Code | hsl(206, 86%, 40%) |
#0e72bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(14, 114, 188); }
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(206, 86%, 40%); }
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 #0e72bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(14, 114, 188, 10%) | #0e72bc1a | |
rgb(14, 114, 188, 20%) | #0e72bc33 | |
rgb(14, 114, 188, 40%) | #0e72bc4C | |
rgb(14, 114, 188, 60%) | #0e72bc99 | |
rgb(14, 114, 188, 80%) | #0e72bcCC | |
rgb(14, 114, 188, 100%) | #0e72bcFF |
Saturated and desaturated colors of #0e72bc
HSL Code | Preview |
---|---|
hsl(206, 10%, 40%) | |
hsl(206, 20%, 40%) | |
hsl(206, 40%, 40%) | |
hsl(206, 60%, 40%) | |
hsl(206, 80%, 40%) | |
hsl(206, 100%, 40%) |
#0e72bc Color Usage In CSS
body { color: #0e72bc; } p { color: rgb(14, 114, 188); } header { border-bottom:1px solid #0e72bc; }