#5fbab6 Color
Color Codes | |
---|---|
Hex Code | #5fbab6 |
RGB Code | rgb(95, 186, 182) |
HSL Code | hsl(177, 40%, 55%) |
#5fbab6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(95, 186, 182); }
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(177, 40%, 55%); }
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 #5fbab6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(95, 186, 182, 10%) | #5fbab61a | |
rgb(95, 186, 182, 20%) | #5fbab633 | |
rgb(95, 186, 182, 40%) | #5fbab64C | |
rgb(95, 186, 182, 60%) | #5fbab699 | |
rgb(95, 186, 182, 80%) | #5fbab6CC | |
rgb(95, 186, 182, 100%) | #5fbab6FF |
Saturated and desaturated colors of #5fbab6
HSL Code | Preview |
---|---|
hsl(177, 10%, 55%) | |
hsl(177, 20%, 55%) | |
hsl(177, 40%, 55%) | |
hsl(177, 60%, 55%) | |
hsl(177, 80%, 55%) | |
hsl(177, 100%, 55%) |
#5fbab6 Color Usage In CSS
body { color: #5fbab6; } p { color: rgb(95, 186, 182); } header { border-bottom:1px solid #5fbab6; }