#be586f Color
Color Codes | |
---|---|
Hex Code | #be586f |
RGB Code | rgb(190, 88, 111) |
HSL Code | hsl(346, 44%, 55%) |
#be586f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(190, 88, 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(346, 44%, 55%); }
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 #be586f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(190, 88, 111, 10%) | #be586f1a | |
rgb(190, 88, 111, 20%) | #be586f33 | |
rgb(190, 88, 111, 40%) | #be586f4C | |
rgb(190, 88, 111, 60%) | #be586f99 | |
rgb(190, 88, 111, 80%) | #be586fCC | |
rgb(190, 88, 111, 100%) | #be586fFF |
Saturated and desaturated colors of #be586f
HSL Code | Preview |
---|---|
hsl(346, 10%, 55%) | |
hsl(346, 20%, 55%) | |
hsl(346, 40%, 55%) | |
hsl(346, 60%, 55%) | |
hsl(346, 80%, 55%) | |
hsl(346, 100%, 55%) |
#be586f Color Usage In CSS
body { color: #be586f; } p { color: rgb(190, 88, 111); } header { border-bottom:1px solid #be586f; }