Random Color Generator

#954f76 Color

Color Codes
Hex Code #954f76
RGB Code rgb(149, 79, 118)
HSL Code hsl(327, 31%, 45%)

#954f76 Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 79, 118);
   }

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(327, 31%, 45%);
  }

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 #954f76

RGB Code Hex Code Preview
rgb(149, 79, 118, 10%) #954f761a  
rgb(149, 79, 118, 20%) #954f7633  
rgb(149, 79, 118, 40%) #954f764C  
rgb(149, 79, 118, 60%) #954f7699  
rgb(149, 79, 118, 80%) #954f76CC  
rgb(149, 79, 118, 100%) #954f76FF  

Saturated and desaturated colors of #954f76

HSL Code Preview
hsl(327, 10%, 45%)  
hsl(327, 20%, 45%)  
hsl(327, 40%, 45%)  
hsl(327, 60%, 45%)  
hsl(327, 80%, 45%)  
hsl(327, 100%, 45%)  

#954f76 Color Usage In CSS

 body {
    color: #954f76;
    }
 p {
    color: rgb(149, 79, 118);
    }
 header {
    border-bottom:1px solid #954f76;
    }
Recent Random Colors