#7297ae Color
Color Codes | |
---|---|
Hex Code | #7297ae |
RGB Code | rgb(114, 151, 174) |
HSL Code | hsl(203, 27%, 56%) |
#7297ae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 151, 174); }
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(203, 27%, 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 #7297ae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 151, 174, 10%) | #7297ae1a | |
rgb(114, 151, 174, 20%) | #7297ae33 | |
rgb(114, 151, 174, 40%) | #7297ae4C | |
rgb(114, 151, 174, 60%) | #7297ae99 | |
rgb(114, 151, 174, 80%) | #7297aeCC | |
rgb(114, 151, 174, 100%) | #7297aeFF |
Saturated and desaturated colors of #7297ae
HSL Code | Preview |
---|---|
hsl(203, 10%, 56%) | |
hsl(203, 20%, 56%) | |
hsl(203, 40%, 56%) | |
hsl(203, 60%, 56%) | |
hsl(203, 80%, 56%) | |
hsl(203, 100%, 56%) |
#7297ae Color Usage In CSS
body { color: #7297ae; } p { color: rgb(114, 151, 174); } header { border-bottom:1px solid #7297ae; }