Random Color Generator

#dcb3a8 Color

Color Codes
Hex Code #dcb3a8
RGB Code rgb(220, 179, 168)
HSL Code hsl(13, 43%, 76%)

#dcb3a8 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 179, 168);
   }

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(13, 43%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(220, 179, 168, 10%) #dcb3a81a  
rgb(220, 179, 168, 20%) #dcb3a833  
rgb(220, 179, 168, 40%) #dcb3a84C  
rgb(220, 179, 168, 60%) #dcb3a899  
rgb(220, 179, 168, 80%) #dcb3a8CC  
rgb(220, 179, 168, 100%) #dcb3a8FF  

Saturated and desaturated colors of #dcb3a8

HSL Code Preview
hsl(13, 10%, 76%)  
hsl(13, 20%, 76%)  
hsl(13, 40%, 76%)  
hsl(13, 60%, 76%)  
hsl(13, 80%, 76%)  
hsl(13, 100%, 76%)  

#dcb3a8 Color Usage In CSS

 body {
    color: #dcb3a8;
    }
 p {
    color: rgb(220, 179, 168);
    }
 header {
    border-bottom:1px solid #dcb3a8;
    }
Recent Random Colors