#b79edc Color
Color Codes | |
---|---|
Hex Code | #b79edc |
RGB Code | rgb(183, 158, 220) |
HSL Code | hsl(264, 47%, 74%) |
#b79edc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(183, 158, 220); }
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(264, 47%, 74%); }
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 #b79edc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(183, 158, 220, 10%) | #b79edc1a | |
rgb(183, 158, 220, 20%) | #b79edc33 | |
rgb(183, 158, 220, 40%) | #b79edc4C | |
rgb(183, 158, 220, 60%) | #b79edc99 | |
rgb(183, 158, 220, 80%) | #b79edcCC | |
rgb(183, 158, 220, 100%) | #b79edcFF |
Saturated and desaturated colors of #b79edc
HSL Code | Preview |
---|---|
hsl(264, 10%, 74%) | |
hsl(264, 20%, 74%) | |
hsl(264, 40%, 74%) | |
hsl(264, 60%, 74%) | |
hsl(264, 80%, 74%) | |
hsl(264, 100%, 74%) |
#b79edc Color Usage In CSS
body { color: #b79edc; } p { color: rgb(183, 158, 220); } header { border-bottom:1px solid #b79edc; }