Random Color Generator

#d96050 Color

Color Codes
Hex Code #d96050
RGB Code rgb(217, 96, 80)
HSL Code hsl(7, 64%, 58%)

#d96050 Color Syntax

rgb()

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

 main {
    background-color: rgb(217, 96, 80);
   }

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

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

RGB Code Hex Code Preview
rgb(217, 96, 80, 10%) #d960501a  
rgb(217, 96, 80, 20%) #d9605033  
rgb(217, 96, 80, 40%) #d960504C  
rgb(217, 96, 80, 60%) #d9605099  
rgb(217, 96, 80, 80%) #d96050CC  
rgb(217, 96, 80, 100%) #d96050FF  

Saturated and desaturated colors of #d96050

HSL Code Preview
hsl(7, 10%, 58%)  
hsl(7, 20%, 58%)  
hsl(7, 40%, 58%)  
hsl(7, 60%, 58%)  
hsl(7, 80%, 58%)  
hsl(7, 100%, 58%)  

#d96050 Color Usage In CSS

 body {
    color: #d96050;
    }
 p {
    color: rgb(217, 96, 80);
    }
 header {
    border-bottom:1px solid #d96050;
    }
Recent Random Colors