Random Color Generator

#bc8bdc Color

Color Codes
Hex Code #bc8bdc
RGB Code rgb(188, 139, 220)
HSL Code hsl(276, 54%, 70%)

#bc8bdc Color Syntax

rgb()

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

 main {
    background-color: rgb(188, 139, 220);
   }

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(276, 54%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(188, 139, 220, 10%) #bc8bdc1a  
rgb(188, 139, 220, 20%) #bc8bdc33  
rgb(188, 139, 220, 40%) #bc8bdc4C  
rgb(188, 139, 220, 60%) #bc8bdc99  
rgb(188, 139, 220, 80%) #bc8bdcCC  
rgb(188, 139, 220, 100%) #bc8bdcFF  

Saturated and desaturated colors of #bc8bdc

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

#bc8bdc Color Usage In CSS

 body {
    color: #bc8bdc;
    }
 p {
    color: rgb(188, 139, 220);
    }
 header {
    border-bottom:1px solid #bc8bdc;
    }
Recent Random Colors