#5db1ef Color
Color Codes | |
---|---|
Hex Code | #5db1ef |
RGB Code | rgb(93, 177, 239) |
HSL Code | hsl(205, 82%, 65%) |
#5db1ef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(93, 177, 239); }
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(205, 82%, 65%); }
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 #5db1ef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(93, 177, 239, 10%) | #5db1ef1a | |
rgb(93, 177, 239, 20%) | #5db1ef33 | |
rgb(93, 177, 239, 40%) | #5db1ef4C | |
rgb(93, 177, 239, 60%) | #5db1ef99 | |
rgb(93, 177, 239, 80%) | #5db1efCC | |
rgb(93, 177, 239, 100%) | #5db1efFF |
Saturated and desaturated colors of #5db1ef
HSL Code | Preview |
---|---|
hsl(205, 10%, 65%) | |
hsl(205, 20%, 65%) | |
hsl(205, 40%, 65%) | |
hsl(205, 60%, 65%) | |
hsl(205, 80%, 65%) | |
hsl(205, 100%, 65%) |
#5db1ef Color Usage In CSS
body { color: #5db1ef; } p { color: rgb(93, 177, 239); } header { border-bottom:1px solid #5db1ef; }