Random Color Generator

#dc5d42 Color

Color Codes
Hex Code #dc5d42
RGB Code rgb(220, 93, 66)
HSL Code hsl(11, 69%, 56%)

#dc5d42 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 93, 66);
   }

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(11, 69%, 56%);
  }

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

RGB Code Hex Code Preview
rgb(220, 93, 66, 10%) #dc5d421a  
rgb(220, 93, 66, 20%) #dc5d4233  
rgb(220, 93, 66, 40%) #dc5d424C  
rgb(220, 93, 66, 60%) #dc5d4299  
rgb(220, 93, 66, 80%) #dc5d42CC  
rgb(220, 93, 66, 100%) #dc5d42FF  

Saturated and desaturated colors of #dc5d42

HSL Code Preview
hsl(11, 10%, 56%)  
hsl(11, 20%, 56%)  
hsl(11, 40%, 56%)  
hsl(11, 60%, 56%)  
hsl(11, 80%, 56%)  
hsl(11, 100%, 56%)  

#dc5d42 Color Usage In CSS

 body {
    color: #dc5d42;
    }
 p {
    color: rgb(220, 93, 66);
    }
 header {
    border-bottom:1px solid #dc5d42;
    }
Recent Random Colors