Random Color Generator

#b876cf Color

Color Codes
Hex Code #b876cf
RGB Code rgb(184, 118, 207)
HSL Code hsl(284, 48%, 64%)

#b876cf Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 118, 207);
   }

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, 48%, 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 #b876cf

RGB Code Hex Code Preview
rgb(184, 118, 207, 10%) #b876cf1a  
rgb(184, 118, 207, 20%) #b876cf33  
rgb(184, 118, 207, 40%) #b876cf4C  
rgb(184, 118, 207, 60%) #b876cf99  
rgb(184, 118, 207, 80%) #b876cfCC  
rgb(184, 118, 207, 100%) #b876cfFF  

Saturated and desaturated colors of #b876cf

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%)  

#b876cf Color Usage In CSS

 body {
    color: #b876cf;
    }
 p {
    color: rgb(184, 118, 207);
    }
 header {
    border-bottom:1px solid #b876cf;
    }
Recent Random Colors