#77bce6 Color
Color Codes | |
---|---|
Hex Code | #77bce6 |
RGB Code | rgb(119, 188, 230) |
HSL Code | hsl(203, 69%, 68%) |
#77bce6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 188, 230); }
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(203, 69%, 68%); }
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 #77bce6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 188, 230, 10%) | #77bce61a | |
rgb(119, 188, 230, 20%) | #77bce633 | |
rgb(119, 188, 230, 40%) | #77bce64C | |
rgb(119, 188, 230, 60%) | #77bce699 | |
rgb(119, 188, 230, 80%) | #77bce6CC | |
rgb(119, 188, 230, 100%) | #77bce6FF |
Saturated and desaturated colors of #77bce6
HSL Code | Preview |
---|---|
hsl(203, 10%, 68%) | |
hsl(203, 20%, 68%) | |
hsl(203, 40%, 68%) | |
hsl(203, 60%, 68%) | |
hsl(203, 80%, 68%) | |
hsl(203, 100%, 68%) |
#77bce6 Color Usage In CSS
body { color: #77bce6; } p { color: rgb(119, 188, 230); } header { border-bottom:1px solid #77bce6; }