Random Color Generator

#a73960 Color

Color Codes
Hex Code #a73960
RGB Code rgb(167, 57, 96)
HSL Code hsl(339, 49%, 44%)

#a73960 Color Syntax

rgb()

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

 main {
    background-color: rgb(167, 57, 96);
   }

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(339, 49%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(167, 57, 96, 10%) #a739601a  
rgb(167, 57, 96, 20%) #a7396033  
rgb(167, 57, 96, 40%) #a739604C  
rgb(167, 57, 96, 60%) #a7396099  
rgb(167, 57, 96, 80%) #a73960CC  
rgb(167, 57, 96, 100%) #a73960FF  

Saturated and desaturated colors of #a73960

HSL Code Preview
hsl(339, 10%, 44%)  
hsl(339, 20%, 44%)  
hsl(339, 40%, 44%)  
hsl(339, 60%, 44%)  
hsl(339, 80%, 44%)  
hsl(339, 100%, 44%)  

#a73960 Color Usage In CSS

 body {
    color: #a73960;
    }
 p {
    color: rgb(167, 57, 96);
    }
 header {
    border-bottom:1px solid #a73960;
    }
Recent Random Colors