Random Color Generator

#CFDCAD Color

Color Codes
Hex Code #CFDCAD
RGB Code rgb(207, 220, 173)
HSL Code hsl(77, 40%, 77%)

#CFDCAD Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 220, 173);
   }

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(77, 40%, 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 #CFDCAD

RGB Code Hex Code Preview
rgb(207, 220, 173, 10%) #CFDCAD1a  
rgb(207, 220, 173, 20%) #CFDCAD33  
rgb(207, 220, 173, 40%) #CFDCAD4C  
rgb(207, 220, 173, 60%) #CFDCAD99  
rgb(207, 220, 173, 80%) #CFDCADCC  
rgb(207, 220, 173, 100%) #CFDCADFF  

Saturated and desaturated colors of #CFDCAD

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

#CFDCAD Color Usage In CSS

 body {
    color: #CFDCAD;
    }
 p {
    color: rgb(207, 220, 173);
    }
 header {
    border-bottom:1px solid #CFDCAD;
    }
Recent Random Colors