Random Color Generator

#a34861 Color

Color Codes
Hex Code #a34861
RGB Code rgb(163, 72, 97)
HSL Code hsl(344, 39%, 46%)

#a34861 Color Syntax

rgb()

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

 main {
    background-color: rgb(163, 72, 97);
   }

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(344, 39%, 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 #a34861

RGB Code Hex Code Preview
rgb(163, 72, 97, 10%) #a348611a  
rgb(163, 72, 97, 20%) #a3486133  
rgb(163, 72, 97, 40%) #a348614C  
rgb(163, 72, 97, 60%) #a3486199  
rgb(163, 72, 97, 80%) #a34861CC  
rgb(163, 72, 97, 100%) #a34861FF  

Saturated and desaturated colors of #a34861

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

#a34861 Color Usage In CSS

 body {
    color: #a34861;
    }
 p {
    color: rgb(163, 72, 97);
    }
 header {
    border-bottom:1px solid #a34861;
    }
Recent Random Colors