Random Color Generator

#bd0880 Color

Color Codes
Hex Code #bd0880
RGB Code rgb(189, 08, 128)
HSL Code hsl(320, 92%, 39%)

#bd0880 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 08, 128);
   }

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(320, 92%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(189, 08, 128, 10%) #bd08801a  
rgb(189, 08, 128, 20%) #bd088033  
rgb(189, 08, 128, 40%) #bd08804C  
rgb(189, 08, 128, 60%) #bd088099  
rgb(189, 08, 128, 80%) #bd0880CC  
rgb(189, 08, 128, 100%) #bd0880FF  

Saturated and desaturated colors of #bd0880

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

#bd0880 Color Usage In CSS

 body {
    color: #bd0880;
    }
 p {
    color: rgb(189, 08, 128);
    }
 header {
    border-bottom:1px solid #bd0880;
    }
Recent Random Colors