Random Color Generator

#bfb084 Color

Color Codes
Hex Code #bfb084
RGB Code rgb(191, 176, 132)
HSL Code hsl(45, 32%, 63%)

#bfb084 Color Syntax

rgb()

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

 main {
    background-color: rgb(191, 176, 132);
   }

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(45, 32%, 63%);
  }

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

RGB Code Hex Code Preview
rgb(191, 176, 132, 10%) #bfb0841a  
rgb(191, 176, 132, 20%) #bfb08433  
rgb(191, 176, 132, 40%) #bfb0844C  
rgb(191, 176, 132, 60%) #bfb08499  
rgb(191, 176, 132, 80%) #bfb084CC  
rgb(191, 176, 132, 100%) #bfb084FF  

Saturated and desaturated colors of #bfb084

HSL Code Preview
hsl(45, 10%, 63%)  
hsl(45, 20%, 63%)  
hsl(45, 40%, 63%)  
hsl(45, 60%, 63%)  
hsl(45, 80%, 63%)  
hsl(45, 100%, 63%)  

#bfb084 Color Usage In CSS

 body {
    color: #bfb084;
    }
 p {
    color: rgb(191, 176, 132);
    }
 header {
    border-bottom:1px solid #bfb084;
    }
Recent Random Colors