Random Color Generator

#bc1f72 Color

Color Codes
Hex Code #bc1f72
RGB Code rgb(188, 31, 114)
HSL Code hsl(328, 72%, 43%)

#bc1f72 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 31, 114);
   }

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(328, 72%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(188, 31, 114, 10%) #bc1f721a  
rgb(188, 31, 114, 20%) #bc1f7233  
rgb(188, 31, 114, 40%) #bc1f724C  
rgb(188, 31, 114, 60%) #bc1f7299  
rgb(188, 31, 114, 80%) #bc1f72CC  
rgb(188, 31, 114, 100%) #bc1f72FF  

Saturated and desaturated colors of #bc1f72

HSL Code Preview
hsl(328, 10%, 43%)  
hsl(328, 20%, 43%)  
hsl(328, 40%, 43%)  
hsl(328, 60%, 43%)  
hsl(328, 80%, 43%)  
hsl(328, 100%, 43%)  

#bc1f72 Color Usage In CSS

 body {
    color: #bc1f72;
    }
 p {
    color: rgb(188, 31, 114);
    }
 header {
    border-bottom:1px solid #bc1f72;
    }
Recent Random Colors