#77bc89 Color
Color Codes | |
---|---|
Hex Code | #77bc89 |
RGB Code | rgb(119, 188, 137) |
HSL Code | hsl(136, 34%, 60%) |
#77bc89 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(119, 188, 137); }
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(136, 34%, 60%); }
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 #77bc89
RGB Code | Hex Code | Preview |
---|---|---|
rgb(119, 188, 137, 10%) | #77bc891a | |
rgb(119, 188, 137, 20%) | #77bc8933 | |
rgb(119, 188, 137, 40%) | #77bc894C | |
rgb(119, 188, 137, 60%) | #77bc8999 | |
rgb(119, 188, 137, 80%) | #77bc89CC | |
rgb(119, 188, 137, 100%) | #77bc89FF |
Saturated and desaturated colors of #77bc89
HSL Code | Preview |
---|---|
hsl(136, 10%, 60%) | |
hsl(136, 20%, 60%) | |
hsl(136, 40%, 60%) | |
hsl(136, 60%, 60%) | |
hsl(136, 80%, 60%) | |
hsl(136, 100%, 60%) |
#77bc89 Color Usage In CSS
body { color: #77bc89; } p { color: rgb(119, 188, 137); } header { border-bottom:1px solid #77bc89; }