Random Color Generator

#bb72d6 Color

Color Codes
Hex Code #bb72d6
RGB Code rgb(187, 114, 214)
HSL Code hsl(284, 55%, 64%)

#bb72d6 Color Syntax

rgb()

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

 main {
    background-color: rgb(187, 114, 214);
   }

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(284, 55%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(187, 114, 214, 10%) #bb72d61a  
rgb(187, 114, 214, 20%) #bb72d633  
rgb(187, 114, 214, 40%) #bb72d64C  
rgb(187, 114, 214, 60%) #bb72d699  
rgb(187, 114, 214, 80%) #bb72d6CC  
rgb(187, 114, 214, 100%) #bb72d6FF  

Saturated and desaturated colors of #bb72d6

HSL Code Preview
hsl(284, 10%, 64%)  
hsl(284, 20%, 64%)  
hsl(284, 40%, 64%)  
hsl(284, 60%, 64%)  
hsl(284, 80%, 64%)  
hsl(284, 100%, 64%)  

#bb72d6 Color Usage In CSS

 body {
    color: #bb72d6;
    }
 p {
    color: rgb(187, 114, 214);
    }
 header {
    border-bottom:1px solid #bb72d6;
    }
Recent Random Colors