#6d8590 Color
Color Codes | |
---|---|
Hex Code | #6d8590 |
RGB Code | rgb(109, 133, 144) |
HSL Code | hsl(199, 14%, 50%) |
#6d8590 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(109, 133, 144); }
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(199, 14%, 50%); }
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 #6d8590
RGB Code | Hex Code | Preview |
---|---|---|
rgb(109, 133, 144, 10%) | #6d85901a | |
rgb(109, 133, 144, 20%) | #6d859033 | |
rgb(109, 133, 144, 40%) | #6d85904C | |
rgb(109, 133, 144, 60%) | #6d859099 | |
rgb(109, 133, 144, 80%) | #6d8590CC | |
rgb(109, 133, 144, 100%) | #6d8590FF |
Saturated and desaturated colors of #6d8590
HSL Code | Preview |
---|---|
hsl(199, 10%, 50%) | |
hsl(199, 20%, 50%) | |
hsl(199, 40%, 50%) | |
hsl(199, 60%, 50%) | |
hsl(199, 80%, 50%) | |
hsl(199, 100%, 50%) |
#6d8590 Color Usage In CSS
body { color: #6d8590; } p { color: rgb(109, 133, 144); } header { border-bottom:1px solid #6d8590; }