Random Color Generator

#cafaad Color

Color Codes
Hex Code #cafaad
RGB Code rgb(202, 250, 173)
HSL Code hsl(97, 89%, 83%)

#cafaad Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 250, 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(97, 89%, 83%);
  }

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

RGB Code Hex Code Preview
rgb(202, 250, 173, 10%) #cafaad1a  
rgb(202, 250, 173, 20%) #cafaad33  
rgb(202, 250, 173, 40%) #cafaad4C  
rgb(202, 250, 173, 60%) #cafaad99  
rgb(202, 250, 173, 80%) #cafaadCC  
rgb(202, 250, 173, 100%) #cafaadFF  

Saturated and desaturated colors of #cafaad

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

#cafaad Color Usage In CSS

 body {
    color: #cafaad;
    }
 p {
    color: rgb(202, 250, 173);
    }
 header {
    border-bottom:1px solid #cafaad;
    }
Recent Random Colors