#be2f53 Color
Color Codes | |
---|---|
Hex Code | #be2f53 |
RGB Code | rgb(190, 47, 83) |
HSL Code | hsl(345, 60%, 46%) |
#be2f53 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(190, 47, 83); }
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(345, 60%, 46%); }
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 #be2f53
RGB Code | Hex Code | Preview |
---|---|---|
rgb(190, 47, 83, 10%) | #be2f531a | |
rgb(190, 47, 83, 20%) | #be2f5333 | |
rgb(190, 47, 83, 40%) | #be2f534C | |
rgb(190, 47, 83, 60%) | #be2f5399 | |
rgb(190, 47, 83, 80%) | #be2f53CC | |
rgb(190, 47, 83, 100%) | #be2f53FF |
Saturated and desaturated colors of #be2f53
HSL Code | Preview |
---|---|
hsl(345, 10%, 46%) | |
hsl(345, 20%, 46%) | |
hsl(345, 40%, 46%) | |
hsl(345, 60%, 46%) | |
hsl(345, 80%, 46%) | |
hsl(345, 100%, 46%) |
#be2f53 Color Usage In CSS
body { color: #be2f53; } p { color: rgb(190, 47, 83); } header { border-bottom:1px solid #be2f53; }