Random Color Generator

#dd742c Color

Color Codes
Hex Code #dd742c
RGB Code rgb(221, 116, 44)
HSL Code hsl(24, 72%, 52%)

#dd742c Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 116, 44);
   }

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(24, 72%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(221, 116, 44, 10%) #dd742c1a  
rgb(221, 116, 44, 20%) #dd742c33  
rgb(221, 116, 44, 40%) #dd742c4C  
rgb(221, 116, 44, 60%) #dd742c99  
rgb(221, 116, 44, 80%) #dd742cCC  
rgb(221, 116, 44, 100%) #dd742cFF  

Saturated and desaturated colors of #dd742c

HSL Code Preview
hsl(24, 10%, 52%)  
hsl(24, 20%, 52%)  
hsl(24, 40%, 52%)  
hsl(24, 60%, 52%)  
hsl(24, 80%, 52%)  
hsl(24, 100%, 52%)  

#dd742c Color Usage In CSS

 body {
    color: #dd742c;
    }
 p {
    color: rgb(221, 116, 44);
    }
 header {
    border-bottom:1px solid #dd742c;
    }
Recent Random Colors