Random Color Generator

#b48969 Color

Color Codes
Hex Code #b48969
RGB Code rgb(180, 137, 105)
HSL Code hsl(26, 33%, 56%)

#b48969 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 137, 105);
   }

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(26, 33%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(180, 137, 105, 10%) #b489691a  
rgb(180, 137, 105, 20%) #b4896933  
rgb(180, 137, 105, 40%) #b489694C  
rgb(180, 137, 105, 60%) #b4896999  
rgb(180, 137, 105, 80%) #b48969CC  
rgb(180, 137, 105, 100%) #b48969FF  

Saturated and desaturated colors of #b48969

HSL Code Preview
hsl(26, 10%, 56%)  
hsl(26, 20%, 56%)  
hsl(26, 40%, 56%)  
hsl(26, 60%, 56%)  
hsl(26, 80%, 56%)  
hsl(26, 100%, 56%)  

#b48969 Color Usage In CSS

 body {
    color: #b48969;
    }
 p {
    color: rgb(180, 137, 105);
    }
 header {
    border-bottom:1px solid #b48969;
    }
Recent Random Colors