Random Color Generator

#bb0c0c Color

Color Codes
Hex Code #bb0c0c
RGB Code rgb(187, 12, 12)
HSL Code hsl(0, 88%, 39%)

#bb0c0c Color Syntax

rgb()

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

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

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(0, 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 #bb0c0c

RGB Code Hex Code Preview
rgb(187, 12, 12, 10%) #bb0c0c1a  
rgb(187, 12, 12, 20%) #bb0c0c33  
rgb(187, 12, 12, 40%) #bb0c0c4C  
rgb(187, 12, 12, 60%) #bb0c0c99  
rgb(187, 12, 12, 80%) #bb0c0cCC  
rgb(187, 12, 12, 100%) #bb0c0cFF  

Saturated and desaturated colors of #bb0c0c

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

#bb0c0c Color Usage In CSS

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