#8875bf Color
Color Codes | |
---|---|
Hex Code | #8875bf |
RGB Code | rgb(136, 117, 191) |
HSL Code | hsl(255, 37%, 60%) |
#8875bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 117, 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(255, 37%, 60%); }
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 #8875bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 117, 191, 10%) | #8875bf1a | |
rgb(136, 117, 191, 20%) | #8875bf33 | |
rgb(136, 117, 191, 40%) | #8875bf4C | |
rgb(136, 117, 191, 60%) | #8875bf99 | |
rgb(136, 117, 191, 80%) | #8875bfCC | |
rgb(136, 117, 191, 100%) | #8875bfFF |
Saturated and desaturated colors of #8875bf
HSL Code | Preview |
---|---|
hsl(255, 10%, 60%) | |
hsl(255, 20%, 60%) | |
hsl(255, 40%, 60%) | |
hsl(255, 60%, 60%) | |
hsl(255, 80%, 60%) | |
hsl(255, 100%, 60%) |
#8875bf Color Usage In CSS
body { color: #8875bf; } p { color: rgb(136, 117, 191); } header { border-bottom:1px solid #8875bf; }