#0c5edb Color
Color Codes | |
---|---|
Hex Code | #0c5edb |
RGB Code | rgb(12, 94, 219) |
HSL Code | hsl(216, 90%, 45%) |
#0c5edb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(12, 94, 219); }
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(216, 90%, 45%); }
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 #0c5edb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(12, 94, 219, 10%) | #0c5edb1a | |
rgb(12, 94, 219, 20%) | #0c5edb33 | |
rgb(12, 94, 219, 40%) | #0c5edb4C | |
rgb(12, 94, 219, 60%) | #0c5edb99 | |
rgb(12, 94, 219, 80%) | #0c5edbCC | |
rgb(12, 94, 219, 100%) | #0c5edbFF |
Saturated and desaturated colors of #0c5edb
HSL Code | Preview |
---|---|
hsl(216, 10%, 45%) | |
hsl(216, 20%, 45%) | |
hsl(216, 40%, 45%) | |
hsl(216, 60%, 45%) | |
hsl(216, 80%, 45%) | |
hsl(216, 100%, 45%) |
#0c5edb Color Usage In CSS
body { color: #0c5edb; } p { color: rgb(12, 94, 219); } header { border-bottom:1px solid #0c5edb; }