Random Color Generator

#bb1e30 Color

Color Codes
Hex Code #bb1e30
RGB Code rgb(187, 30, 48)
HSL Code hsl(353, 72%, 43%)

#bb1e30 Color Syntax

rgb()

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

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

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(353, 72%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(187, 30, 48, 10%) #bb1e301a  
rgb(187, 30, 48, 20%) #bb1e3033  
rgb(187, 30, 48, 40%) #bb1e304C  
rgb(187, 30, 48, 60%) #bb1e3099  
rgb(187, 30, 48, 80%) #bb1e30CC  
rgb(187, 30, 48, 100%) #bb1e30FF  

Saturated and desaturated colors of #bb1e30

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

#bb1e30 Color Usage In CSS

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