#06b7df Color
Color Codes | |
---|---|
Hex Code | #06b7df |
RGB Code | rgb(06, 183, 223) |
HSL Code | hsl(191, 95%, 45%) |
#06b7df Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(06, 183, 223); }
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(191, 95%, 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 #06b7df
RGB Code | Hex Code | Preview |
---|---|---|
rgb(06, 183, 223, 10%) | #06b7df1a | |
rgb(06, 183, 223, 20%) | #06b7df33 | |
rgb(06, 183, 223, 40%) | #06b7df4C | |
rgb(06, 183, 223, 60%) | #06b7df99 | |
rgb(06, 183, 223, 80%) | #06b7dfCC | |
rgb(06, 183, 223, 100%) | #06b7dfFF |
Saturated and desaturated colors of #06b7df
HSL Code | Preview |
---|---|
hsl(191, 10%, 45%) | |
hsl(191, 20%, 45%) | |
hsl(191, 40%, 45%) | |
hsl(191, 60%, 45%) | |
hsl(191, 80%, 45%) | |
hsl(191, 100%, 45%) |
#06b7df Color Usage In CSS
body { color: #06b7df; } p { color: rgb(06, 183, 223); } header { border-bottom:1px solid #06b7df; }