Random Color Generator

#d85507 Color

Color Codes
Hex Code #d85507
RGB Code rgb(216, 85, 07)
HSL Code hsl(22, 94%, 44%)

#d85507 Color Syntax

rgb()

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

 main {
    background-color: rgb(216, 85, 07);
   }

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(22, 94%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(216, 85, 07, 10%) #d855071a  
rgb(216, 85, 07, 20%) #d8550733  
rgb(216, 85, 07, 40%) #d855074C  
rgb(216, 85, 07, 60%) #d8550799  
rgb(216, 85, 07, 80%) #d85507CC  
rgb(216, 85, 07, 100%) #d85507FF  

Saturated and desaturated colors of #d85507

HSL Code Preview
hsl(22, 10%, 44%)  
hsl(22, 20%, 44%)  
hsl(22, 40%, 44%)  
hsl(22, 60%, 44%)  
hsl(22, 80%, 44%)  
hsl(22, 100%, 44%)  

#d85507 Color Usage In CSS

 body {
    color: #d85507;
    }
 p {
    color: rgb(216, 85, 07);
    }
 header {
    border-bottom:1px solid #d85507;
    }
Recent Random Colors