Random Color Generator

#b00a45 Color

Color Codes
Hex Code #b00a45
RGB Code rgb(176, 10, 69)
HSL Code hsl(339, 89%, 36%)

#b00a45 Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 10, 69);
   }

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(339, 89%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(176, 10, 69, 10%) #b00a451a  
rgb(176, 10, 69, 20%) #b00a4533  
rgb(176, 10, 69, 40%) #b00a454C  
rgb(176, 10, 69, 60%) #b00a4599  
rgb(176, 10, 69, 80%) #b00a45CC  
rgb(176, 10, 69, 100%) #b00a45FF  

Saturated and desaturated colors of #b00a45

HSL Code Preview
hsl(339, 10%, 36%)  
hsl(339, 20%, 36%)  
hsl(339, 40%, 36%)  
hsl(339, 60%, 36%)  
hsl(339, 80%, 36%)  
hsl(339, 100%, 36%)  

#b00a45 Color Usage In CSS

 body {
    color: #b00a45;
    }
 p {
    color: rgb(176, 10, 69);
    }
 header {
    border-bottom:1px solid #b00a45;
    }
Recent Random Colors