Random Color Generator

#dd8a71 Color

Color Codes
Hex Code #dd8a71
RGB Code rgb(221, 138, 113)
HSL Code hsl(14, 61%, 65%)

#dd8a71 Color Syntax

rgb()

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

 main {
    background-color: rgb(221, 138, 113);
   }

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(14, 61%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(221, 138, 113, 10%) #dd8a711a  
rgb(221, 138, 113, 20%) #dd8a7133  
rgb(221, 138, 113, 40%) #dd8a714C  
rgb(221, 138, 113, 60%) #dd8a7199  
rgb(221, 138, 113, 80%) #dd8a71CC  
rgb(221, 138, 113, 100%) #dd8a71FF  

Saturated and desaturated colors of #dd8a71

HSL Code Preview
hsl(14, 10%, 65%)  
hsl(14, 20%, 65%)  
hsl(14, 40%, 65%)  
hsl(14, 60%, 65%)  
hsl(14, 80%, 65%)  
hsl(14, 100%, 65%)  

#dd8a71 Color Usage In CSS

 body {
    color: #dd8a71;
    }
 p {
    color: rgb(221, 138, 113);
    }
 header {
    border-bottom:1px solid #dd8a71;
    }
Recent Random Colors