Random Color Generator

#b85825 Color

Color Codes
Hex Code #b85825
RGB Code rgb(184, 88, 37)
HSL Code hsl(21, 67%, 43%)

#b85825 Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 88, 37);
   }

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(21, 67%, 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 #b85825

RGB Code Hex Code Preview
rgb(184, 88, 37, 10%) #b858251a  
rgb(184, 88, 37, 20%) #b8582533  
rgb(184, 88, 37, 40%) #b858254C  
rgb(184, 88, 37, 60%) #b8582599  
rgb(184, 88, 37, 80%) #b85825CC  
rgb(184, 88, 37, 100%) #b85825FF  

Saturated and desaturated colors of #b85825

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

#b85825 Color Usage In CSS

 body {
    color: #b85825;
    }
 p {
    color: rgb(184, 88, 37);
    }
 header {
    border-bottom:1px solid #b85825;
    }
Recent Random Colors