#018bcd Color
Color Codes | |
---|---|
Hex Code | #018bcd |
RGB Code | rgb(01, 139, 205) |
HSL Code | hsl(199, 99%, 40%) |
#018bcd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 139, 205); }
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(199, 99%, 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 #018bcd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 139, 205, 10%) | #018bcd1a | |
rgb(01, 139, 205, 20%) | #018bcd33 | |
rgb(01, 139, 205, 40%) | #018bcd4C | |
rgb(01, 139, 205, 60%) | #018bcd99 | |
rgb(01, 139, 205, 80%) | #018bcdCC | |
rgb(01, 139, 205, 100%) | #018bcdFF |
Saturated and desaturated colors of #018bcd
HSL Code | Preview |
---|---|
hsl(199, 10%, 40%) | |
hsl(199, 20%, 40%) | |
hsl(199, 40%, 40%) | |
hsl(199, 60%, 40%) | |
hsl(199, 80%, 40%) | |
hsl(199, 100%, 40%) |
#018bcd Color Usage In CSS
body { color: #018bcd; } p { color: rgb(01, 139, 205); } header { border-bottom:1px solid #018bcd; }