Random Color Generator

#bc1da8 Color

Color Codes
Hex Code #bc1da8
RGB Code rgb(188, 29, 168)
HSL Code hsl(308, 73%, 43%)

#bc1da8 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 29, 168);
   }

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(308, 73%, 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 #bc1da8

RGB Code Hex Code Preview
rgb(188, 29, 168, 10%) #bc1da81a  
rgb(188, 29, 168, 20%) #bc1da833  
rgb(188, 29, 168, 40%) #bc1da84C  
rgb(188, 29, 168, 60%) #bc1da899  
rgb(188, 29, 168, 80%) #bc1da8CC  
rgb(188, 29, 168, 100%) #bc1da8FF  

Saturated and desaturated colors of #bc1da8

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

#bc1da8 Color Usage In CSS

 body {
    color: #bc1da8;
    }
 p {
    color: rgb(188, 29, 168);
    }
 header {
    border-bottom:1px solid #bc1da8;
    }
Recent Random Colors