Random Color Generator

#bd0433 Color

Color Codes
Hex Code #bd0433
RGB Code rgb(189, 04, 51)
HSL Code hsl(345, 96%, 38%)

#bd0433 Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 04, 51);
   }

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(345, 96%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(189, 04, 51, 10%) #bd04331a  
rgb(189, 04, 51, 20%) #bd043333  
rgb(189, 04, 51, 40%) #bd04334C  
rgb(189, 04, 51, 60%) #bd043399  
rgb(189, 04, 51, 80%) #bd0433CC  
rgb(189, 04, 51, 100%) #bd0433FF  

Saturated and desaturated colors of #bd0433

HSL Code Preview
hsl(345, 10%, 38%)  
hsl(345, 20%, 38%)  
hsl(345, 40%, 38%)  
hsl(345, 60%, 38%)  
hsl(345, 80%, 38%)  
hsl(345, 100%, 38%)  

#bd0433 Color Usage In CSS

 body {
    color: #bd0433;
    }
 p {
    color: rgb(189, 04, 51);
    }
 header {
    border-bottom:1px solid #bd0433;
    }
Recent Random Colors