Random Color Generator

#dc3609 Color

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

#dc3609 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 54, 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(13, 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 #dc3609

RGB Code Hex Code Preview
rgb(220, 54, 09, 10%) #dc36091a  
rgb(220, 54, 09, 20%) #dc360933  
rgb(220, 54, 09, 40%) #dc36094C  
rgb(220, 54, 09, 60%) #dc360999  
rgb(220, 54, 09, 80%) #dc3609CC  
rgb(220, 54, 09, 100%) #dc3609FF  

Saturated and desaturated colors of #dc3609

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

#dc3609 Color Usage In CSS

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