Random Color Generator

#841c53 Color

Color Codes
Hex Code #841c53
RGB Code rgb(132, 28, 83)
HSL Code hsl(328, 65%, 31%)

#841c53 Color Syntax

rgb()

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

 main {
    background-color: rgb(132, 28, 83);
   }

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(328, 65%, 31%);
  }

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 #841c53

RGB Code Hex Code Preview
rgb(132, 28, 83, 10%) #841c531a  
rgb(132, 28, 83, 20%) #841c5333  
rgb(132, 28, 83, 40%) #841c534C  
rgb(132, 28, 83, 60%) #841c5399  
rgb(132, 28, 83, 80%) #841c53CC  
rgb(132, 28, 83, 100%) #841c53FF  

Saturated and desaturated colors of #841c53

HSL Code Preview
hsl(328, 10%, 31%)  
hsl(328, 20%, 31%)  
hsl(328, 40%, 31%)  
hsl(328, 60%, 31%)  
hsl(328, 80%, 31%)  
hsl(328, 100%, 31%)  

#841c53 Color Usage In CSS

 body {
    color: #841c53;
    }
 p {
    color: rgb(132, 28, 83);
    }
 header {
    border-bottom:1px solid #841c53;
    }
Recent Random Colors