#697f8f Color
Color Codes | |
---|---|
Hex Code | #697f8f |
RGB Code | rgb(105, 127, 143) |
HSL Code | hsl(205, 15%, 49%) |
#697f8f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 127, 143); }
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(205, 15%, 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 #697f8f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 127, 143, 10%) | #697f8f1a | |
rgb(105, 127, 143, 20%) | #697f8f33 | |
rgb(105, 127, 143, 40%) | #697f8f4C | |
rgb(105, 127, 143, 60%) | #697f8f99 | |
rgb(105, 127, 143, 80%) | #697f8fCC | |
rgb(105, 127, 143, 100%) | #697f8fFF |
Saturated and desaturated colors of #697f8f
HSL Code | Preview |
---|---|
hsl(205, 10%, 49%) | |
hsl(205, 20%, 49%) | |
hsl(205, 40%, 49%) | |
hsl(205, 60%, 49%) | |
hsl(205, 80%, 49%) | |
hsl(205, 100%, 49%) |
#697f8f Color Usage In CSS
body { color: #697f8f; } p { color: rgb(105, 127, 143); } header { border-bottom:1px solid #697f8f; }