Random Color Generator

#ddabac Color

Color Codes
Hex Code #ddabac
RGB Code rgb(221, 171, 172)
HSL Code hsl(359, 42%, 77%)

#ddabac Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 171, 172);
   }

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(359, 42%, 77%);
  }

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

RGB Code Hex Code Preview
rgb(221, 171, 172, 10%) #ddabac1a  
rgb(221, 171, 172, 20%) #ddabac33  
rgb(221, 171, 172, 40%) #ddabac4C  
rgb(221, 171, 172, 60%) #ddabac99  
rgb(221, 171, 172, 80%) #ddabacCC  
rgb(221, 171, 172, 100%) #ddabacFF  

Saturated and desaturated colors of #ddabac

HSL Code Preview
hsl(359, 10%, 77%)  
hsl(359, 20%, 77%)  
hsl(359, 40%, 77%)  
hsl(359, 60%, 77%)  
hsl(359, 80%, 77%)  
hsl(359, 100%, 77%)  

#ddabac Color Usage In CSS

 body {
    color: #ddabac;
    }
 p {
    color: rgb(221, 171, 172);
    }
 header {
    border-bottom:1px solid #ddabac;
    }
Recent Random Colors