Random Color Generator

#a13e63 Color

Color Codes
Hex Code #a13e63
RGB Code rgb(161, 62, 99)
HSL Code hsl(338, 44%, 44%)

#a13e63 Color Syntax

rgb()

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

 main {
    background-color: rgb(161, 62, 99);
   }

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(338, 44%, 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 #a13e63

RGB Code Hex Code Preview
rgb(161, 62, 99, 10%) #a13e631a  
rgb(161, 62, 99, 20%) #a13e6333  
rgb(161, 62, 99, 40%) #a13e634C  
rgb(161, 62, 99, 60%) #a13e6399  
rgb(161, 62, 99, 80%) #a13e63CC  
rgb(161, 62, 99, 100%) #a13e63FF  

Saturated and desaturated colors of #a13e63

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

#a13e63 Color Usage In CSS

 body {
    color: #a13e63;
    }
 p {
    color: rgb(161, 62, 99);
    }
 header {
    border-bottom:1px solid #a13e63;
    }
Recent Random Colors