#61ccbb Color
Color Codes | |
---|---|
Hex Code | #61ccbb |
RGB Code | rgb(97, 204, 187) |
HSL Code | hsl(170, 51%, 59%) |
#61ccbb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 204, 187); }
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(170, 51%, 59%); }
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 #61ccbb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 204, 187, 10%) | #61ccbb1a | |
rgb(97, 204, 187, 20%) | #61ccbb33 | |
rgb(97, 204, 187, 40%) | #61ccbb4C | |
rgb(97, 204, 187, 60%) | #61ccbb99 | |
rgb(97, 204, 187, 80%) | #61ccbbCC | |
rgb(97, 204, 187, 100%) | #61ccbbFF |
Saturated and desaturated colors of #61ccbb
HSL Code | Preview |
---|---|
hsl(170, 10%, 59%) | |
hsl(170, 20%, 59%) | |
hsl(170, 40%, 59%) | |
hsl(170, 60%, 59%) | |
hsl(170, 80%, 59%) | |
hsl(170, 100%, 59%) |
#61ccbb Color Usage In CSS
body { color: #61ccbb; } p { color: rgb(97, 204, 187); } header { border-bottom:1px solid #61ccbb; }