#b19cfe Color
Color Codes | |
---|---|
Hex Code | #b19cfe |
RGB Code | rgb(177, 156, 254) |
HSL Code | hsl(253, 98%, 80%) |
#b19cfe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 156, 254); }
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(253, 98%, 80%); }
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 #b19cfe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 156, 254, 10%) | #b19cfe1a | |
rgb(177, 156, 254, 20%) | #b19cfe33 | |
rgb(177, 156, 254, 40%) | #b19cfe4C | |
rgb(177, 156, 254, 60%) | #b19cfe99 | |
rgb(177, 156, 254, 80%) | #b19cfeCC | |
rgb(177, 156, 254, 100%) | #b19cfeFF |
Saturated and desaturated colors of #b19cfe
HSL Code | Preview |
---|---|
hsl(253, 10%, 80%) | |
hsl(253, 20%, 80%) | |
hsl(253, 40%, 80%) | |
hsl(253, 60%, 80%) | |
hsl(253, 80%, 80%) | |
hsl(253, 100%, 80%) |
#b19cfe Color Usage In CSS
body { color: #b19cfe; } p { color: rgb(177, 156, 254); } header { border-bottom:1px solid #b19cfe; }