Random Color Generator

#d38780 Color

Color Codes
Hex Code #d38780
RGB Code rgb(211, 135, 128)
HSL Code hsl(5, 49%, 66%)

#d38780 Color Syntax

rgb()

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

 main {
    background-color: rgb(211, 135, 128);
   }

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(5, 49%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(211, 135, 128, 10%) #d387801a  
rgb(211, 135, 128, 20%) #d3878033  
rgb(211, 135, 128, 40%) #d387804C  
rgb(211, 135, 128, 60%) #d3878099  
rgb(211, 135, 128, 80%) #d38780CC  
rgb(211, 135, 128, 100%) #d38780FF  

Saturated and desaturated colors of #d38780

HSL Code Preview
hsl(5, 10%, 66%)  
hsl(5, 20%, 66%)  
hsl(5, 40%, 66%)  
hsl(5, 60%, 66%)  
hsl(5, 80%, 66%)  
hsl(5, 100%, 66%)  

#d38780 Color Usage In CSS

 body {
    color: #d38780;
    }
 p {
    color: rgb(211, 135, 128);
    }
 header {
    border-bottom:1px solid #d38780;
    }
Recent Random Colors