Random Color Generator

#d4abbf Color

Color Codes
Hex Code #d4abbf
RGB Code rgb(212, 171, 191)
HSL Code hsl(331, 32%, 75%)

#d4abbf Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 171, 191);
   }

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(331, 32%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(212, 171, 191, 10%) #d4abbf1a  
rgb(212, 171, 191, 20%) #d4abbf33  
rgb(212, 171, 191, 40%) #d4abbf4C  
rgb(212, 171, 191, 60%) #d4abbf99  
rgb(212, 171, 191, 80%) #d4abbfCC  
rgb(212, 171, 191, 100%) #d4abbfFF  

Saturated and desaturated colors of #d4abbf

HSL Code Preview
hsl(331, 10%, 75%)  
hsl(331, 20%, 75%)  
hsl(331, 40%, 75%)  
hsl(331, 60%, 75%)  
hsl(331, 80%, 75%)  
hsl(331, 100%, 75%)  

#d4abbf Color Usage In CSS

 body {
    color: #d4abbf;
    }
 p {
    color: rgb(212, 171, 191);
    }
 header {
    border-bottom:1px solid #d4abbf;
    }
Recent Random Colors