Random Color Generator

#bc61b3 Color

Color Codes
Hex Code #bc61b3
RGB Code rgb(188, 97, 179)
HSL Code hsl(306, 40%, 56%)

#bc61b3 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 97, 179);
   }

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(306, 40%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(188, 97, 179, 10%) #bc61b31a  
rgb(188, 97, 179, 20%) #bc61b333  
rgb(188, 97, 179, 40%) #bc61b34C  
rgb(188, 97, 179, 60%) #bc61b399  
rgb(188, 97, 179, 80%) #bc61b3CC  
rgb(188, 97, 179, 100%) #bc61b3FF  

Saturated and desaturated colors of #bc61b3

HSL Code Preview
hsl(306, 10%, 56%)  
hsl(306, 20%, 56%)  
hsl(306, 40%, 56%)  
hsl(306, 60%, 56%)  
hsl(306, 80%, 56%)  
hsl(306, 100%, 56%)  

#bc61b3 Color Usage In CSS

 body {
    color: #bc61b3;
    }
 p {
    color: rgb(188, 97, 179);
    }
 header {
    border-bottom:1px solid #bc61b3;
    }
Recent Random Colors