#7d90bf Color
Color Codes | |
---|---|
Hex Code | #7d90bf |
RGB Code | rgb(125, 144, 191) |
HSL Code | hsl(223, 34%, 62%) |
#7d90bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(125, 144, 191); }
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(223, 34%, 62%); }
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 #7d90bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(125, 144, 191, 10%) | #7d90bf1a | |
rgb(125, 144, 191, 20%) | #7d90bf33 | |
rgb(125, 144, 191, 40%) | #7d90bf4C | |
rgb(125, 144, 191, 60%) | #7d90bf99 | |
rgb(125, 144, 191, 80%) | #7d90bfCC | |
rgb(125, 144, 191, 100%) | #7d90bfFF |
Saturated and desaturated colors of #7d90bf
HSL Code | Preview |
---|---|
hsl(223, 10%, 62%) | |
hsl(223, 20%, 62%) | |
hsl(223, 40%, 62%) | |
hsl(223, 60%, 62%) | |
hsl(223, 80%, 62%) | |
hsl(223, 100%, 62%) |
#7d90bf Color Usage In CSS
body { color: #7d90bf; } p { color: rgb(125, 144, 191); } header { border-bottom:1px solid #7d90bf; }