Random Color Generator

#bd0c50 Color

Color Codes
Hex Code #bd0c50
RGB Code rgb(189, 12, 80)
HSL Code hsl(337, 88%, 39%)

#bd0c50 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 12, 80);
   }

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(337, 88%, 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 #bd0c50

RGB Code Hex Code Preview
rgb(189, 12, 80, 10%) #bd0c501a  
rgb(189, 12, 80, 20%) #bd0c5033  
rgb(189, 12, 80, 40%) #bd0c504C  
rgb(189, 12, 80, 60%) #bd0c5099  
rgb(189, 12, 80, 80%) #bd0c50CC  
rgb(189, 12, 80, 100%) #bd0c50FF  

Saturated and desaturated colors of #bd0c50

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

#bd0c50 Color Usage In CSS

 body {
    color: #bd0c50;
    }
 p {
    color: rgb(189, 12, 80);
    }
 header {
    border-bottom:1px solid #bd0c50;
    }
Recent Random Colors