Random Color Generator

#d97720 Color

Color Codes
Hex Code #d97720
RGB Code rgb(217, 119, 32)
HSL Code hsl(28, 74%, 49%)

#d97720 Color Syntax

rgb()

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

 main {
    background-color: rgb(217, 119, 32);
   }

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(28, 74%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(217, 119, 32, 10%) #d977201a  
rgb(217, 119, 32, 20%) #d9772033  
rgb(217, 119, 32, 40%) #d977204C  
rgb(217, 119, 32, 60%) #d9772099  
rgb(217, 119, 32, 80%) #d97720CC  
rgb(217, 119, 32, 100%) #d97720FF  

Saturated and desaturated colors of #d97720

HSL Code Preview
hsl(28, 10%, 49%)  
hsl(28, 20%, 49%)  
hsl(28, 40%, 49%)  
hsl(28, 60%, 49%)  
hsl(28, 80%, 49%)  
hsl(28, 100%, 49%)  

#d97720 Color Usage In CSS

 body {
    color: #d97720;
    }
 p {
    color: rgb(217, 119, 32);
    }
 header {
    border-bottom:1px solid #d97720;
    }
Recent Random Colors