#5abcdf Color
Color Codes | |
---|---|
Hex Code | #5abcdf |
RGB Code | rgb(90, 188, 223) |
HSL Code | hsl(196, 68%, 61%) |
#5abcdf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(90, 188, 223); }
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(196, 68%, 61%); }
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 #5abcdf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(90, 188, 223, 10%) | #5abcdf1a | |
rgb(90, 188, 223, 20%) | #5abcdf33 | |
rgb(90, 188, 223, 40%) | #5abcdf4C | |
rgb(90, 188, 223, 60%) | #5abcdf99 | |
rgb(90, 188, 223, 80%) | #5abcdfCC | |
rgb(90, 188, 223, 100%) | #5abcdfFF |
Saturated and desaturated colors of #5abcdf
HSL Code | Preview |
---|---|
hsl(196, 10%, 61%) | |
hsl(196, 20%, 61%) | |
hsl(196, 40%, 61%) | |
hsl(196, 60%, 61%) | |
hsl(196, 80%, 61%) | |
hsl(196, 100%, 61%) |
#5abcdf Color Usage In CSS
body { color: #5abcdf; } p { color: rgb(90, 188, 223); } header { border-bottom:1px solid #5abcdf; }