Random Color Generator

#dc7300 Color

Color Codes
Hex Code #dc7300
RGB Code rgb(220, 115, 00)
HSL Code hsl(31, 100%, 43%)

#dc7300 Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 115, 00);
   }

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(31, 100%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(220, 115, 00, 10%) #dc73001a  
rgb(220, 115, 00, 20%) #dc730033  
rgb(220, 115, 00, 40%) #dc73004C  
rgb(220, 115, 00, 60%) #dc730099  
rgb(220, 115, 00, 80%) #dc7300CC  
rgb(220, 115, 00, 100%) #dc7300FF  

Saturated and desaturated colors of #dc7300

HSL Code Preview
hsl(31, 10%, 43%)  
hsl(31, 20%, 43%)  
hsl(31, 40%, 43%)  
hsl(31, 60%, 43%)  
hsl(31, 80%, 43%)  
hsl(31, 100%, 43%)  

#dc7300 Color Usage In CSS

 body {
    color: #dc7300;
    }
 p {
    color: rgb(220, 115, 00);
    }
 header {
    border-bottom:1px solid #dc7300;
    }
Recent Random Colors