Random Color Generator

#d38374 Color

Color Codes
Hex Code #d38374
RGB Code rgb(211, 131, 116)
HSL Code hsl(9, 52%, 64%)

#d38374 Color Syntax

rgb()

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

 main {
    background-color: rgb(211, 131, 116);
   }

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(9, 52%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(211, 131, 116, 10%) #d383741a  
rgb(211, 131, 116, 20%) #d3837433  
rgb(211, 131, 116, 40%) #d383744C  
rgb(211, 131, 116, 60%) #d3837499  
rgb(211, 131, 116, 80%) #d38374CC  
rgb(211, 131, 116, 100%) #d38374FF  

Saturated and desaturated colors of #d38374

HSL Code Preview
hsl(9, 10%, 64%)  
hsl(9, 20%, 64%)  
hsl(9, 40%, 64%)  
hsl(9, 60%, 64%)  
hsl(9, 80%, 64%)  
hsl(9, 100%, 64%)  

#d38374 Color Usage In CSS

 body {
    color: #d38374;
    }
 p {
    color: rgb(211, 131, 116);
    }
 header {
    border-bottom:1px solid #d38374;
    }
Recent Random Colors