Random Color Generator

#9a464e Color

Color Codes
Hex Code #9a464e
RGB Code rgb(154, 70, 78)
HSL Code hsl(354, 38%, 44%)

#9a464e Color Syntax

rgb()

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

 main {
    background-color: rgb(154, 70, 78);
   }

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(354, 38%, 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 #9a464e

RGB Code Hex Code Preview
rgb(154, 70, 78, 10%) #9a464e1a  
rgb(154, 70, 78, 20%) #9a464e33  
rgb(154, 70, 78, 40%) #9a464e4C  
rgb(154, 70, 78, 60%) #9a464e99  
rgb(154, 70, 78, 80%) #9a464eCC  
rgb(154, 70, 78, 100%) #9a464eFF  

Saturated and desaturated colors of #9a464e

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

#9a464e Color Usage In CSS

 body {
    color: #9a464e;
    }
 p {
    color: rgb(154, 70, 78);
    }
 header {
    border-bottom:1px solid #9a464e;
    }
Recent Random Colors