Random Color Generator

#dc9785 Color

Color Codes
Hex Code #dc9785
RGB Code rgb(220, 151, 133)
HSL Code hsl(12, 55%, 69%)

#dc9785 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 151, 133);
   }

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(12, 55%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(220, 151, 133, 10%) #dc97851a  
rgb(220, 151, 133, 20%) #dc978533  
rgb(220, 151, 133, 40%) #dc97854C  
rgb(220, 151, 133, 60%) #dc978599  
rgb(220, 151, 133, 80%) #dc9785CC  
rgb(220, 151, 133, 100%) #dc9785FF  

Saturated and desaturated colors of #dc9785

HSL Code Preview
hsl(12, 10%, 69%)  
hsl(12, 20%, 69%)  
hsl(12, 40%, 69%)  
hsl(12, 60%, 69%)  
hsl(12, 80%, 69%)  
hsl(12, 100%, 69%)  

#dc9785 Color Usage In CSS

 body {
    color: #dc9785;
    }
 p {
    color: rgb(220, 151, 133);
    }
 header {
    border-bottom:1px solid #dc9785;
    }
Recent Random Colors