#611bea Color
Color Codes | |
---|---|
Hex Code | #611bea |
RGB Code | rgb(97, 27, 234) |
HSL Code | hsl(260, 83%, 51%) |
#611bea Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 27, 234); }
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(260, 83%, 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 #611bea
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 27, 234, 10%) | #611bea1a | |
rgb(97, 27, 234, 20%) | #611bea33 | |
rgb(97, 27, 234, 40%) | #611bea4C | |
rgb(97, 27, 234, 60%) | #611bea99 | |
rgb(97, 27, 234, 80%) | #611beaCC | |
rgb(97, 27, 234, 100%) | #611beaFF |
Saturated and desaturated colors of #611bea
HSL Code | Preview |
---|---|
hsl(260, 10%, 51%) | |
hsl(260, 20%, 51%) | |
hsl(260, 40%, 51%) | |
hsl(260, 60%, 51%) | |
hsl(260, 80%, 51%) | |
hsl(260, 100%, 51%) |
#611bea Color Usage In CSS
body { color: #611bea; } p { color: rgb(97, 27, 234); } header { border-bottom:1px solid #611bea; }