Random Color Generator

#bc6e94 Color

Color Codes
Hex Code #bc6e94
RGB Code rgb(188, 110, 148)
HSL Code hsl(331, 37%, 58%)

#bc6e94 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 110, 148);
   }

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, 37%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(188, 110, 148, 10%) #bc6e941a  
rgb(188, 110, 148, 20%) #bc6e9433  
rgb(188, 110, 148, 40%) #bc6e944C  
rgb(188, 110, 148, 60%) #bc6e9499  
rgb(188, 110, 148, 80%) #bc6e94CC  
rgb(188, 110, 148, 100%) #bc6e94FF  

Saturated and desaturated colors of #bc6e94

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

#bc6e94 Color Usage In CSS

 body {
    color: #bc6e94;
    }
 p {
    color: rgb(188, 110, 148);
    }
 header {
    border-bottom:1px solid #bc6e94;
    }
Recent Random Colors