#4077bc Color
Color Codes | |
---|---|
Hex Code | #4077bc |
RGB Code | rgb(64, 119, 188) |
HSL Code | hsl(213, 49%, 49%) |
#4077bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(64, 119, 188); }
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, 49%, 49%); }
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 #4077bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(64, 119, 188, 10%) | #4077bc1a | |
rgb(64, 119, 188, 20%) | #4077bc33 | |
rgb(64, 119, 188, 40%) | #4077bc4C | |
rgb(64, 119, 188, 60%) | #4077bc99 | |
rgb(64, 119, 188, 80%) | #4077bcCC | |
rgb(64, 119, 188, 100%) | #4077bcFF |
Saturated and desaturated colors of #4077bc
HSL Code | Preview |
---|---|
hsl(213, 10%, 49%) | |
hsl(213, 20%, 49%) | |
hsl(213, 40%, 49%) | |
hsl(213, 60%, 49%) | |
hsl(213, 80%, 49%) | |
hsl(213, 100%, 49%) |
#4077bc Color Usage In CSS
body { color: #4077bc; } p { color: rgb(64, 119, 188); } header { border-bottom:1px solid #4077bc; }