Random Color Generator

#bc58d8 Color

Color Codes
Hex Code #bc58d8
RGB Code rgb(188, 88, 216)
HSL Code hsl(287, 62%, 60%)

#bc58d8 Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 88, 216);
   }

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(287, 62%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(188, 88, 216, 10%) #bc58d81a  
rgb(188, 88, 216, 20%) #bc58d833  
rgb(188, 88, 216, 40%) #bc58d84C  
rgb(188, 88, 216, 60%) #bc58d899  
rgb(188, 88, 216, 80%) #bc58d8CC  
rgb(188, 88, 216, 100%) #bc58d8FF  

Saturated and desaturated colors of #bc58d8

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

#bc58d8 Color Usage In CSS

 body {
    color: #bc58d8;
    }
 p {
    color: rgb(188, 88, 216);
    }
 header {
    border-bottom:1px solid #bc58d8;
    }
Recent Random Colors