Random Color Generator

#bc6e76 Color

Color Codes
Hex Code #bc6e76
RGB Code rgb(188, 110, 118)
HSL Code hsl(354, 37%, 58%)

#bc6e76 Color Syntax

rgb()

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

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

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(354, 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 #bc6e76

RGB Code Hex Code Preview
rgb(188, 110, 118, 10%) #bc6e761a  
rgb(188, 110, 118, 20%) #bc6e7633  
rgb(188, 110, 118, 40%) #bc6e764C  
rgb(188, 110, 118, 60%) #bc6e7699  
rgb(188, 110, 118, 80%) #bc6e76CC  
rgb(188, 110, 118, 100%) #bc6e76FF  

Saturated and desaturated colors of #bc6e76

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

#bc6e76 Color Usage In CSS

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