#4380dc Color
Color Codes | |
---|---|
Hex Code | #4380dc |
RGB Code | rgb(67, 128, 220) |
HSL Code | hsl(216, 69%, 56%) |
#4380dc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(67, 128, 220); }
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(216, 69%, 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 #4380dc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(67, 128, 220, 10%) | #4380dc1a | |
rgb(67, 128, 220, 20%) | #4380dc33 | |
rgb(67, 128, 220, 40%) | #4380dc4C | |
rgb(67, 128, 220, 60%) | #4380dc99 | |
rgb(67, 128, 220, 80%) | #4380dcCC | |
rgb(67, 128, 220, 100%) | #4380dcFF |
Saturated and desaturated colors of #4380dc
HSL Code | Preview |
---|---|
hsl(216, 10%, 56%) | |
hsl(216, 20%, 56%) | |
hsl(216, 40%, 56%) | |
hsl(216, 60%, 56%) | |
hsl(216, 80%, 56%) | |
hsl(216, 100%, 56%) |
#4380dc Color Usage In CSS
body { color: #4380dc; } p { color: rgb(67, 128, 220); } header { border-bottom:1px solid #4380dc; }