Random Color Generator

#bf5bca Color

Color Codes
Hex Code #bf5bca
RGB Code rgb(191, 91, 202)
HSL Code hsl(294, 51%, 57%)

#bf5bca Color Syntax

rgb()

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

 main {
    background-color: rgb(191, 91, 202);
   }

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(294, 51%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(191, 91, 202, 10%) #bf5bca1a  
rgb(191, 91, 202, 20%) #bf5bca33  
rgb(191, 91, 202, 40%) #bf5bca4C  
rgb(191, 91, 202, 60%) #bf5bca99  
rgb(191, 91, 202, 80%) #bf5bcaCC  
rgb(191, 91, 202, 100%) #bf5bcaFF  

Saturated and desaturated colors of #bf5bca

HSL Code Preview
hsl(294, 10%, 57%)  
hsl(294, 20%, 57%)  
hsl(294, 40%, 57%)  
hsl(294, 60%, 57%)  
hsl(294, 80%, 57%)  
hsl(294, 100%, 57%)  

#bf5bca Color Usage In CSS

 body {
    color: #bf5bca;
    }
 p {
    color: rgb(191, 91, 202);
    }
 header {
    border-bottom:1px solid #bf5bca;
    }
Recent Random Colors