Random Color Generator

#ddc71c Color

Color Codes
Hex Code #ddc71c
RGB Code rgb(221, 199, 28)
HSL Code hsl(53, 78%, 49%)

#ddc71c Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 199, 28);
   }

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(53, 78%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(221, 199, 28, 10%) #ddc71c1a  
rgb(221, 199, 28, 20%) #ddc71c33  
rgb(221, 199, 28, 40%) #ddc71c4C  
rgb(221, 199, 28, 60%) #ddc71c99  
rgb(221, 199, 28, 80%) #ddc71cCC  
rgb(221, 199, 28, 100%) #ddc71cFF  

Saturated and desaturated colors of #ddc71c

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

#ddc71c Color Usage In CSS

 body {
    color: #ddc71c;
    }
 p {
    color: rgb(221, 199, 28);
    }
 header {
    border-bottom:1px solid #ddc71c;
    }
Recent Random Colors