Random Color Generator

#601d40 Color

Color Codes
Hex Code #601d40
RGB Code rgb(96, 29, 64)
HSL Code hsl(329, 54%, 25%)

#601d40 Color Syntax

rgb()

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

 main {
    background-color: rgb(96, 29, 64);
   }

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(329, 54%, 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 #601d40

RGB Code Hex Code Preview
rgb(96, 29, 64, 10%) #601d401a  
rgb(96, 29, 64, 20%) #601d4033  
rgb(96, 29, 64, 40%) #601d404C  
rgb(96, 29, 64, 60%) #601d4099  
rgb(96, 29, 64, 80%) #601d40CC  
rgb(96, 29, 64, 100%) #601d40FF  

Saturated and desaturated colors of #601d40

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

#601d40 Color Usage In CSS

 body {
    color: #601d40;
    }
 p {
    color: rgb(96, 29, 64);
    }
 header {
    border-bottom:1px solid #601d40;
    }
Recent Random Colors