Random Color Generator

#b3451c Color

Color Codes
Hex Code #b3451c
RGB Code rgb(179, 69, 28)
HSL Code hsl(16, 73%, 41%)

#b3451c Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 69, 28);
   }

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(16, 73%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(179, 69, 28, 10%) #b3451c1a  
rgb(179, 69, 28, 20%) #b3451c33  
rgb(179, 69, 28, 40%) #b3451c4C  
rgb(179, 69, 28, 60%) #b3451c99  
rgb(179, 69, 28, 80%) #b3451cCC  
rgb(179, 69, 28, 100%) #b3451cFF  

Saturated and desaturated colors of #b3451c

HSL Code Preview
hsl(16, 10%, 41%)  
hsl(16, 20%, 41%)  
hsl(16, 40%, 41%)  
hsl(16, 60%, 41%)  
hsl(16, 80%, 41%)  
hsl(16, 100%, 41%)  

#b3451c Color Usage In CSS

 body {
    color: #b3451c;
    }
 p {
    color: rgb(179, 69, 28);
    }
 header {
    border-bottom:1px solid #b3451c;
    }
Recent Random Colors