Random Color Generator

#dcbc87 Color

Color Codes
Hex Code #dcbc87
RGB Code rgb(220, 188, 135)
HSL Code hsl(37, 55%, 70%)

#dcbc87 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 188, 135);
   }

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(37, 55%, 70%);
  }

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

RGB Code Hex Code Preview
rgb(220, 188, 135, 10%) #dcbc871a  
rgb(220, 188, 135, 20%) #dcbc8733  
rgb(220, 188, 135, 40%) #dcbc874C  
rgb(220, 188, 135, 60%) #dcbc8799  
rgb(220, 188, 135, 80%) #dcbc87CC  
rgb(220, 188, 135, 100%) #dcbc87FF  

Saturated and desaturated colors of #dcbc87

HSL Code Preview
hsl(37, 10%, 70%)  
hsl(37, 20%, 70%)  
hsl(37, 40%, 70%)  
hsl(37, 60%, 70%)  
hsl(37, 80%, 70%)  
hsl(37, 100%, 70%)  

#dcbc87 Color Usage In CSS

 body {
    color: #dcbc87;
    }
 p {
    color: rgb(220, 188, 135);
    }
 header {
    border-bottom:1px solid #dcbc87;
    }
Recent Random Colors