Random Color Generator

#cdd0ac Color

Color Codes
Hex Code #cdd0ac
RGB Code rgb(205, 208, 172)
HSL Code hsl(65, 28%, 75%)

#cdd0ac Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 208, 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(65, 28%, 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 #cdd0ac

RGB Code Hex Code Preview
rgb(205, 208, 172, 10%) #cdd0ac1a  
rgb(205, 208, 172, 20%) #cdd0ac33  
rgb(205, 208, 172, 40%) #cdd0ac4C  
rgb(205, 208, 172, 60%) #cdd0ac99  
rgb(205, 208, 172, 80%) #cdd0acCC  
rgb(205, 208, 172, 100%) #cdd0acFF  

Saturated and desaturated colors of #cdd0ac

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

#cdd0ac Color Usage In CSS

 body {
    color: #cdd0ac;
    }
 p {
    color: rgb(205, 208, 172);
    }
 header {
    border-bottom:1px solid #cdd0ac;
    }
Recent Random Colors