Random Color Generator

#9d4d81 Color

Color Codes
Hex Code #9d4d81
RGB Code rgb(157, 77, 129)
HSL Code hsl(321, 34%, 46%)

#9d4d81 Color Syntax

rgb()

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

 main {
    background-color: rgb(157, 77, 129);
   }

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(321, 34%, 46%);
  }

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 #9d4d81

RGB Code Hex Code Preview
rgb(157, 77, 129, 10%) #9d4d811a  
rgb(157, 77, 129, 20%) #9d4d8133  
rgb(157, 77, 129, 40%) #9d4d814C  
rgb(157, 77, 129, 60%) #9d4d8199  
rgb(157, 77, 129, 80%) #9d4d81CC  
rgb(157, 77, 129, 100%) #9d4d81FF  

Saturated and desaturated colors of #9d4d81

HSL Code Preview
hsl(321, 10%, 46%)  
hsl(321, 20%, 46%)  
hsl(321, 40%, 46%)  
hsl(321, 60%, 46%)  
hsl(321, 80%, 46%)  
hsl(321, 100%, 46%)  

#9d4d81 Color Usage In CSS

 body {
    color: #9d4d81;
    }
 p {
    color: rgb(157, 77, 129);
    }
 header {
    border-bottom:1px solid #9d4d81;
    }
Recent Random Colors