#5bc19a Color
Color Codes | |
---|---|
Hex Code | #5bc19a |
RGB Code | rgb(91, 193, 154) |
HSL Code | hsl(157, 45%, 56%) |
#5bc19a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(91, 193, 154); }
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(157, 45%, 56%); }
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 #5bc19a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(91, 193, 154, 10%) | #5bc19a1a | |
rgb(91, 193, 154, 20%) | #5bc19a33 | |
rgb(91, 193, 154, 40%) | #5bc19a4C | |
rgb(91, 193, 154, 60%) | #5bc19a99 | |
rgb(91, 193, 154, 80%) | #5bc19aCC | |
rgb(91, 193, 154, 100%) | #5bc19aFF |
Saturated and desaturated colors of #5bc19a
HSL Code | Preview |
---|---|
hsl(157, 10%, 56%) | |
hsl(157, 20%, 56%) | |
hsl(157, 40%, 56%) | |
hsl(157, 60%, 56%) | |
hsl(157, 80%, 56%) | |
hsl(157, 100%, 56%) |
#5bc19a Color Usage In CSS
body { color: #5bc19a; } p { color: rgb(91, 193, 154); } header { border-bottom:1px solid #5bc19a; }