Random Color Generator

#ddaf4b Color

Color Codes
Hex Code #ddaf4b
RGB Code rgb(221, 175, 75)
HSL Code hsl(41, 68%, 58%)

#ddaf4b Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 175, 75);
   }

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(41, 68%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(221, 175, 75, 10%) #ddaf4b1a  
rgb(221, 175, 75, 20%) #ddaf4b33  
rgb(221, 175, 75, 40%) #ddaf4b4C  
rgb(221, 175, 75, 60%) #ddaf4b99  
rgb(221, 175, 75, 80%) #ddaf4bCC  
rgb(221, 175, 75, 100%) #ddaf4bFF  

Saturated and desaturated colors of #ddaf4b

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

#ddaf4b Color Usage In CSS

 body {
    color: #ddaf4b;
    }
 p {
    color: rgb(221, 175, 75);
    }
 header {
    border-bottom:1px solid #ddaf4b;
    }
Recent Random Colors