#5882ff Color
Color Codes | |
---|---|
Hex Code | #5882ff |
RGB Code | rgb(88, 130, 255) |
HSL Code | hsl(225, 100%, 67%) |
#5882ff Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(88, 130, 255); }
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(225, 100%, 67%); }
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 #5882ff
RGB Code | Hex Code | Preview |
---|---|---|
rgb(88, 130, 255, 10%) | #5882ff1a | |
rgb(88, 130, 255, 20%) | #5882ff33 | |
rgb(88, 130, 255, 40%) | #5882ff4C | |
rgb(88, 130, 255, 60%) | #5882ff99 | |
rgb(88, 130, 255, 80%) | #5882ffCC | |
rgb(88, 130, 255, 100%) | #5882ffFF |
Saturated and desaturated colors of #5882ff
HSL Code | Preview |
---|---|
hsl(225, 10%, 67%) | |
hsl(225, 20%, 67%) | |
hsl(225, 40%, 67%) | |
hsl(225, 60%, 67%) | |
hsl(225, 80%, 67%) | |
hsl(225, 100%, 67%) |
#5882ff Color Usage In CSS
body { color: #5882ff; } p { color: rgb(88, 130, 255); } header { border-bottom:1px solid #5882ff; }