Random Color Generator

#d67971 Color

Color Codes
Hex Code #d67971
RGB Code rgb(214, 121, 113)
HSL Code hsl(5, 55%, 64%)

#d67971 Color Syntax

rgb()

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

 main {
    background-color: rgb(214, 121, 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(5, 55%, 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 #d67971

RGB Code Hex Code Preview
rgb(214, 121, 113, 10%) #d679711a  
rgb(214, 121, 113, 20%) #d6797133  
rgb(214, 121, 113, 40%) #d679714C  
rgb(214, 121, 113, 60%) #d6797199  
rgb(214, 121, 113, 80%) #d67971CC  
rgb(214, 121, 113, 100%) #d67971FF  

Saturated and desaturated colors of #d67971

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

#d67971 Color Usage In CSS

 body {
    color: #d67971;
    }
 p {
    color: rgb(214, 121, 113);
    }
 header {
    border-bottom:1px solid #d67971;
    }
Recent Random Colors