Random Color Generator

#b45028 Color

Color Codes
Hex Code #b45028
RGB Code rgb(180, 80, 40)
HSL Code hsl(17, 64%, 43%)

#b45028 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 80, 40);
   }

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(17, 64%, 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 #b45028

RGB Code Hex Code Preview
rgb(180, 80, 40, 10%) #b450281a  
rgb(180, 80, 40, 20%) #b4502833  
rgb(180, 80, 40, 40%) #b450284C  
rgb(180, 80, 40, 60%) #b4502899  
rgb(180, 80, 40, 80%) #b45028CC  
rgb(180, 80, 40, 100%) #b45028FF  

Saturated and desaturated colors of #b45028

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

#b45028 Color Usage In CSS

 body {
    color: #b45028;
    }
 p {
    color: rgb(180, 80, 40);
    }
 header {
    border-bottom:1px solid #b45028;
    }
Recent Random Colors