#4088df Color
Color Codes | |
---|---|
Hex Code | #4088df |
RGB Code | rgb(64, 136, 223) |
HSL Code | hsl(213, 71%, 56%) |
#4088df Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(64, 136, 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(213, 71%, 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 #4088df
RGB Code | Hex Code | Preview |
---|---|---|
rgb(64, 136, 223, 10%) | #4088df1a | |
rgb(64, 136, 223, 20%) | #4088df33 | |
rgb(64, 136, 223, 40%) | #4088df4C | |
rgb(64, 136, 223, 60%) | #4088df99 | |
rgb(64, 136, 223, 80%) | #4088dfCC | |
rgb(64, 136, 223, 100%) | #4088dfFF |
Saturated and desaturated colors of #4088df
HSL Code | Preview |
---|---|
hsl(213, 10%, 56%) | |
hsl(213, 20%, 56%) | |
hsl(213, 40%, 56%) | |
hsl(213, 60%, 56%) | |
hsl(213, 80%, 56%) | |
hsl(213, 100%, 56%) |
#4088df Color Usage In CSS
body { color: #4088df; } p { color: rgb(64, 136, 223); } header { border-bottom:1px solid #4088df; }