Random Color Generator

#dcc709 Color

Color Codes
Hex Code #dcc709
RGB Code rgb(220, 199, 09)
HSL Code hsl(54, 92%, 45%)

#dcc709 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 199, 09);
   }

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(54, 92%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(220, 199, 09, 10%) #dcc7091a  
rgb(220, 199, 09, 20%) #dcc70933  
rgb(220, 199, 09, 40%) #dcc7094C  
rgb(220, 199, 09, 60%) #dcc70999  
rgb(220, 199, 09, 80%) #dcc709CC  
rgb(220, 199, 09, 100%) #dcc709FF  

Saturated and desaturated colors of #dcc709

HSL Code Preview
hsl(54, 10%, 45%)  
hsl(54, 20%, 45%)  
hsl(54, 40%, 45%)  
hsl(54, 60%, 45%)  
hsl(54, 80%, 45%)  
hsl(54, 100%, 45%)  

#dcc709 Color Usage In CSS

 body {
    color: #dcc709;
    }
 p {
    color: rgb(220, 199, 09);
    }
 header {
    border-bottom:1px solid #dcc709;
    }
Recent Random Colors