Random Color Generator

#b73072 Color

Color Codes
Hex Code #b73072
RGB Code rgb(183, 48, 114)
HSL Code hsl(331, 58%, 45%)

#b73072 Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(183, 48, 114);
   }

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(331, 58%, 45%);
  }

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 #b73072

RGB Code Hex Code Preview
rgb(183, 48, 114, 10%) #b730721a  
rgb(183, 48, 114, 20%) #b7307233  
rgb(183, 48, 114, 40%) #b730724C  
rgb(183, 48, 114, 60%) #b7307299  
rgb(183, 48, 114, 80%) #b73072CC  
rgb(183, 48, 114, 100%) #b73072FF  

Saturated and desaturated colors of #b73072

HSL Code Preview
hsl(331, 10%, 45%)  
hsl(331, 20%, 45%)  
hsl(331, 40%, 45%)  
hsl(331, 60%, 45%)  
hsl(331, 80%, 45%)  
hsl(331, 100%, 45%)  

#b73072 Color Usage In CSS

 body {
    color: #b73072;
    }
 p {
    color: rgb(183, 48, 114);
    }
 header {
    border-bottom:1px solid #b73072;
    }
Recent Random Colors