Random Color Generator

#953e70 Color

Color Codes
Hex Code #953e70
RGB Code rgb(149, 62, 112)
HSL Code hsl(326, 41%, 41%)

#953e70 Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 62, 112);
   }

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(326, 41%, 41%);
  }

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 #953e70

RGB Code Hex Code Preview
rgb(149, 62, 112, 10%) #953e701a  
rgb(149, 62, 112, 20%) #953e7033  
rgb(149, 62, 112, 40%) #953e704C  
rgb(149, 62, 112, 60%) #953e7099  
rgb(149, 62, 112, 80%) #953e70CC  
rgb(149, 62, 112, 100%) #953e70FF  

Saturated and desaturated colors of #953e70

HSL Code Preview
hsl(326, 10%, 41%)  
hsl(326, 20%, 41%)  
hsl(326, 40%, 41%)  
hsl(326, 60%, 41%)  
hsl(326, 80%, 41%)  
hsl(326, 100%, 41%)  

#953e70 Color Usage In CSS

 body {
    color: #953e70;
    }
 p {
    color: rgb(149, 62, 112);
    }
 header {
    border-bottom:1px solid #953e70;
    }
Recent Random Colors