Random Color Generator

#dc7232 Color

Color Codes
Hex Code #dc7232
RGB Code rgb(220, 114, 50)
HSL Code hsl(23, 71%, 53%)

#dc7232 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 114, 50);
   }

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(23, 71%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(220, 114, 50, 10%) #dc72321a  
rgb(220, 114, 50, 20%) #dc723233  
rgb(220, 114, 50, 40%) #dc72324C  
rgb(220, 114, 50, 60%) #dc723299  
rgb(220, 114, 50, 80%) #dc7232CC  
rgb(220, 114, 50, 100%) #dc7232FF  

Saturated and desaturated colors of #dc7232

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

#dc7232 Color Usage In CSS

 body {
    color: #dc7232;
    }
 p {
    color: rgb(220, 114, 50);
    }
 header {
    border-bottom:1px solid #dc7232;
    }
Recent Random Colors