#b990cd Color
Color Codes | |
---|---|
Hex Code | #b990cd |
RGB Code | rgb(185, 144, 205) |
HSL Code | hsl(280, 38%, 68%) |
#b990cd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(185, 144, 205); }
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(280, 38%, 68%); }
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 #b990cd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(185, 144, 205, 10%) | #b990cd1a | |
rgb(185, 144, 205, 20%) | #b990cd33 | |
rgb(185, 144, 205, 40%) | #b990cd4C | |
rgb(185, 144, 205, 60%) | #b990cd99 | |
rgb(185, 144, 205, 80%) | #b990cdCC | |
rgb(185, 144, 205, 100%) | #b990cdFF |
Saturated and desaturated colors of #b990cd
HSL Code | Preview |
---|---|
hsl(280, 10%, 68%) | |
hsl(280, 20%, 68%) | |
hsl(280, 40%, 68%) | |
hsl(280, 60%, 68%) | |
hsl(280, 80%, 68%) | |
hsl(280, 100%, 68%) |
#b990cd Color Usage In CSS
body { color: #b990cd; } p { color: rgb(185, 144, 205); } header { border-bottom:1px solid #b990cd; }