Random Color Generator

#bc07a5 Color

Color Codes
Hex Code #bc07a5
RGB Code rgb(188, 07, 165)
HSL Code hsl(308, 93%, 38%)

#bc07a5 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 07, 165);
   }

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, 93%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(188, 07, 165, 10%) #bc07a51a  
rgb(188, 07, 165, 20%) #bc07a533  
rgb(188, 07, 165, 40%) #bc07a54C  
rgb(188, 07, 165, 60%) #bc07a599  
rgb(188, 07, 165, 80%) #bc07a5CC  
rgb(188, 07, 165, 100%) #bc07a5FF  

Saturated and desaturated colors of #bc07a5

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

#bc07a5 Color Usage In CSS

 body {
    color: #bc07a5;
    }
 p {
    color: rgb(188, 07, 165);
    }
 header {
    border-bottom:1px solid #bc07a5;
    }
Recent Random Colors