#426877 Color
Color Codes | |
---|---|
Hex Code | #426877 |
RGB Code | rgb(66, 104, 119) |
HSL Code | hsl(197, 29%, 36%) |
#426877 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(66, 104, 119); }
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(197, 29%, 36%); }
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 #426877
RGB Code | Hex Code | Preview |
---|---|---|
rgb(66, 104, 119, 10%) | #4268771a | |
rgb(66, 104, 119, 20%) | #42687733 | |
rgb(66, 104, 119, 40%) | #4268774C | |
rgb(66, 104, 119, 60%) | #42687799 | |
rgb(66, 104, 119, 80%) | #426877CC | |
rgb(66, 104, 119, 100%) | #426877FF |
Saturated and desaturated colors of #426877
HSL Code | Preview |
---|---|
hsl(197, 10%, 36%) | |
hsl(197, 20%, 36%) | |
hsl(197, 40%, 36%) | |
hsl(197, 60%, 36%) | |
hsl(197, 80%, 36%) | |
hsl(197, 100%, 36%) |
#426877 Color Usage In CSS
body { color: #426877; } p { color: rgb(66, 104, 119); } header { border-bottom:1px solid #426877; }