Random Color Generator

#cea96e Color

Color Codes
Hex Code #cea96e
RGB Code rgb(206, 169, 110)
HSL Code hsl(37, 49%, 62%)

#cea96e Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 169, 110);
   }

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(37, 49%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(206, 169, 110, 10%) #cea96e1a  
rgb(206, 169, 110, 20%) #cea96e33  
rgb(206, 169, 110, 40%) #cea96e4C  
rgb(206, 169, 110, 60%) #cea96e99  
rgb(206, 169, 110, 80%) #cea96eCC  
rgb(206, 169, 110, 100%) #cea96eFF  

Saturated and desaturated colors of #cea96e

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

#cea96e Color Usage In CSS

 body {
    color: #cea96e;
    }
 p {
    color: rgb(206, 169, 110);
    }
 header {
    border-bottom:1px solid #cea96e;
    }
Recent Random Colors