#be46a2 Color
Color Codes | |
---|---|
Hex Code | #be46a2 |
RGB Code | rgb(190, 70, 162) |
HSL Code | hsl(314, 48%, 51%) |
#be46a2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(190, 70, 162); }
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(314, 48%, 51%); }
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 #be46a2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(190, 70, 162, 10%) | #be46a21a | |
rgb(190, 70, 162, 20%) | #be46a233 | |
rgb(190, 70, 162, 40%) | #be46a24C | |
rgb(190, 70, 162, 60%) | #be46a299 | |
rgb(190, 70, 162, 80%) | #be46a2CC | |
rgb(190, 70, 162, 100%) | #be46a2FF |
Saturated and desaturated colors of #be46a2
HSL Code | Preview |
---|---|
hsl(314, 10%, 51%) | |
hsl(314, 20%, 51%) | |
hsl(314, 40%, 51%) | |
hsl(314, 60%, 51%) | |
hsl(314, 80%, 51%) | |
hsl(314, 100%, 51%) |
#be46a2 Color Usage In CSS
body { color: #be46a2; } p { color: rgb(190, 70, 162); } header { border-bottom:1px solid #be46a2; }