#69526f Color
Color Codes | |
---|---|
Hex Code | #69526f |
RGB Code | rgb(105, 82, 111) |
HSL Code | hsl(288, 15%, 38%) |
#69526f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(105, 82, 111); }
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(288, 15%, 38%); }
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 #69526f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(105, 82, 111, 10%) | #69526f1a | |
rgb(105, 82, 111, 20%) | #69526f33 | |
rgb(105, 82, 111, 40%) | #69526f4C | |
rgb(105, 82, 111, 60%) | #69526f99 | |
rgb(105, 82, 111, 80%) | #69526fCC | |
rgb(105, 82, 111, 100%) | #69526fFF |
Saturated and desaturated colors of #69526f
HSL Code | Preview |
---|---|
hsl(288, 10%, 38%) | |
hsl(288, 20%, 38%) | |
hsl(288, 40%, 38%) | |
hsl(288, 60%, 38%) | |
hsl(288, 80%, 38%) | |
hsl(288, 100%, 38%) |
#69526f Color Usage In CSS
body { color: #69526f; } p { color: rgb(105, 82, 111); } header { border-bottom:1px solid #69526f; }