Random Color Generator

#bb045a Color

Color Codes
Hex Code #bb045a
RGB Code rgb(187, 04, 90)
HSL Code hsl(332, 96%, 37%)

#bb045a Color Syntax

rgb()

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

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

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(332, 96%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(187, 04, 90, 10%) #bb045a1a  
rgb(187, 04, 90, 20%) #bb045a33  
rgb(187, 04, 90, 40%) #bb045a4C  
rgb(187, 04, 90, 60%) #bb045a99  
rgb(187, 04, 90, 80%) #bb045aCC  
rgb(187, 04, 90, 100%) #bb045aFF  

Saturated and desaturated colors of #bb045a

HSL Code Preview
hsl(332, 10%, 37%)  
hsl(332, 20%, 37%)  
hsl(332, 40%, 37%)  
hsl(332, 60%, 37%)  
hsl(332, 80%, 37%)  
hsl(332, 100%, 37%)  

#bb045a Color Usage In CSS

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