Random Color Generator

#b75386 Color

Color Codes
Hex Code #b75386
RGB Code rgb(183, 83, 134)
HSL Code hsl(329, 41%, 52%)

#b75386 Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 83, 134);
   }

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(329, 41%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(183, 83, 134, 10%) #b753861a  
rgb(183, 83, 134, 20%) #b7538633  
rgb(183, 83, 134, 40%) #b753864C  
rgb(183, 83, 134, 60%) #b7538699  
rgb(183, 83, 134, 80%) #b75386CC  
rgb(183, 83, 134, 100%) #b75386FF  

Saturated and desaturated colors of #b75386

HSL Code Preview
hsl(329, 10%, 52%)  
hsl(329, 20%, 52%)  
hsl(329, 40%, 52%)  
hsl(329, 60%, 52%)  
hsl(329, 80%, 52%)  
hsl(329, 100%, 52%)  

#b75386 Color Usage In CSS

 body {
    color: #b75386;
    }
 p {
    color: rgb(183, 83, 134);
    }
 header {
    border-bottom:1px solid #b75386;
    }
Recent Random Colors