#05b9ce Color
Color Codes | |
---|---|
Hex Code | #05b9ce |
RGB Code | rgb(05, 185, 206) |
HSL Code | hsl(186, 95%, 41%) |
#05b9ce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 185, 206); }
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(186, 95%, 41%); }
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 #05b9ce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 185, 206, 10%) | #05b9ce1a | |
rgb(05, 185, 206, 20%) | #05b9ce33 | |
rgb(05, 185, 206, 40%) | #05b9ce4C | |
rgb(05, 185, 206, 60%) | #05b9ce99 | |
rgb(05, 185, 206, 80%) | #05b9ceCC | |
rgb(05, 185, 206, 100%) | #05b9ceFF |
Saturated and desaturated colors of #05b9ce
HSL Code | Preview |
---|---|
hsl(186, 10%, 41%) | |
hsl(186, 20%, 41%) | |
hsl(186, 40%, 41%) | |
hsl(186, 60%, 41%) | |
hsl(186, 80%, 41%) | |
hsl(186, 100%, 41%) |
#05b9ce Color Usage In CSS
body { color: #05b9ce; } p { color: rgb(05, 185, 206); } header { border-bottom:1px solid #05b9ce; }