Random Color Generator

#9b1d7b Color

Color Codes
Hex Code #9b1d7b
RGB Code rgb(155, 29, 123)
HSL Code hsl(315, 68%, 36%)

#9b1d7b Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 29, 123);
   }

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(315, 68%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(155, 29, 123, 10%) #9b1d7b1a  
rgb(155, 29, 123, 20%) #9b1d7b33  
rgb(155, 29, 123, 40%) #9b1d7b4C  
rgb(155, 29, 123, 60%) #9b1d7b99  
rgb(155, 29, 123, 80%) #9b1d7bCC  
rgb(155, 29, 123, 100%) #9b1d7bFF  

Saturated and desaturated colors of #9b1d7b

HSL Code Preview
hsl(315, 10%, 36%)  
hsl(315, 20%, 36%)  
hsl(315, 40%, 36%)  
hsl(315, 60%, 36%)  
hsl(315, 80%, 36%)  
hsl(315, 100%, 36%)  

#9b1d7b Color Usage In CSS

 body {
    color: #9b1d7b;
    }
 p {
    color: rgb(155, 29, 123);
    }
 header {
    border-bottom:1px solid #9b1d7b;
    }
Recent Random Colors