Random Color Generator

#ddea5a Color

Color Codes
Hex Code #ddea5a
RGB Code rgb(221, 234, 90)
HSL Code hsl(65, 77%, 64%)

#ddea5a Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 234, 90);
   }

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, 77%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(221, 234, 90, 10%) #ddea5a1a  
rgb(221, 234, 90, 20%) #ddea5a33  
rgb(221, 234, 90, 40%) #ddea5a4C  
rgb(221, 234, 90, 60%) #ddea5a99  
rgb(221, 234, 90, 80%) #ddea5aCC  
rgb(221, 234, 90, 100%) #ddea5aFF  

Saturated and desaturated colors of #ddea5a

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

#ddea5a Color Usage In CSS

 body {
    color: #ddea5a;
    }
 p {
    color: rgb(221, 234, 90);
    }
 header {
    border-bottom:1px solid #ddea5a;
    }
Recent Random Colors