Random Color Generator

#7f0952 Color

Color Codes
Hex Code #7f0952
RGB Code rgb(127, 09, 82)
HSL Code hsl(323, 87%, 27%)

#7f0952 Color Syntax

rgb()

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

 main {
    background-color: rgb(127, 09, 82);
   }

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(323, 87%, 27%);
  }

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 #7f0952

RGB Code Hex Code Preview
rgb(127, 09, 82, 10%) #7f09521a  
rgb(127, 09, 82, 20%) #7f095233  
rgb(127, 09, 82, 40%) #7f09524C  
rgb(127, 09, 82, 60%) #7f095299  
rgb(127, 09, 82, 80%) #7f0952CC  
rgb(127, 09, 82, 100%) #7f0952FF  

Saturated and desaturated colors of #7f0952

HSL Code Preview
hsl(323, 10%, 27%)  
hsl(323, 20%, 27%)  
hsl(323, 40%, 27%)  
hsl(323, 60%, 27%)  
hsl(323, 80%, 27%)  
hsl(323, 100%, 27%)  

#7f0952 Color Usage In CSS

 body {
    color: #7f0952;
    }
 p {
    color: rgb(127, 09, 82);
    }
 header {
    border-bottom:1px solid #7f0952;
    }
Recent Random Colors