#5ebdca Color
Color Codes | |
---|---|
Hex Code | #5ebdca |
RGB Code | rgb(94, 189, 202) |
HSL Code | hsl(187, 50%, 58%) |
#5ebdca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(94, 189, 202); }
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(187, 50%, 58%); }
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 #5ebdca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(94, 189, 202, 10%) | #5ebdca1a | |
rgb(94, 189, 202, 20%) | #5ebdca33 | |
rgb(94, 189, 202, 40%) | #5ebdca4C | |
rgb(94, 189, 202, 60%) | #5ebdca99 | |
rgb(94, 189, 202, 80%) | #5ebdcaCC | |
rgb(94, 189, 202, 100%) | #5ebdcaFF |
Saturated and desaturated colors of #5ebdca
HSL Code | Preview |
---|---|
hsl(187, 10%, 58%) | |
hsl(187, 20%, 58%) | |
hsl(187, 40%, 58%) | |
hsl(187, 60%, 58%) | |
hsl(187, 80%, 58%) | |
hsl(187, 100%, 58%) |
#5ebdca Color Usage In CSS
body { color: #5ebdca; } p { color: rgb(94, 189, 202); } header { border-bottom:1px solid #5ebdca; }