Random Color Generator

#710c31 Color

Color Codes
Hex Code #710c31
RGB Code rgb(113, 12, 49)
HSL Code hsl(338, 81%, 25%)

#710c31 Color Syntax

rgb()

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

 main {
    background-color: rgb(113, 12, 49);
   }

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, 81%, 25%);
  }

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 #710c31

RGB Code Hex Code Preview
rgb(113, 12, 49, 10%) #710c311a  
rgb(113, 12, 49, 20%) #710c3133  
rgb(113, 12, 49, 40%) #710c314C  
rgb(113, 12, 49, 60%) #710c3199  
rgb(113, 12, 49, 80%) #710c31CC  
rgb(113, 12, 49, 100%) #710c31FF  

Saturated and desaturated colors of #710c31

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

#710c31 Color Usage In CSS

 body {
    color: #710c31;
    }
 p {
    color: rgb(113, 12, 49);
    }
 header {
    border-bottom:1px solid #710c31;
    }
Recent Random Colors