Random Color Generator

#d5c2bc Color

Color Codes
Hex Code #d5c2bc
RGB Code rgb(213, 194, 188)
HSL Code hsl(14, 23%, 79%)

#d5c2bc Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 194, 188);
   }

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(14, 23%, 79%);
  }

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

RGB Code Hex Code Preview
rgb(213, 194, 188, 10%) #d5c2bc1a  
rgb(213, 194, 188, 20%) #d5c2bc33  
rgb(213, 194, 188, 40%) #d5c2bc4C  
rgb(213, 194, 188, 60%) #d5c2bc99  
rgb(213, 194, 188, 80%) #d5c2bcCC  
rgb(213, 194, 188, 100%) #d5c2bcFF  

Saturated and desaturated colors of #d5c2bc

HSL Code Preview
hsl(14, 10%, 79%)  
hsl(14, 20%, 79%)  
hsl(14, 40%, 79%)  
hsl(14, 60%, 79%)  
hsl(14, 80%, 79%)  
hsl(14, 100%, 79%)  

#d5c2bc Color Usage In CSS

 body {
    color: #d5c2bc;
    }
 p {
    color: rgb(213, 194, 188);
    }
 header {
    border-bottom:1px solid #d5c2bc;
    }
Recent Random Colors