Random Color Generator

#6e194b Color

Color Codes
Hex Code #6e194b
RGB Code rgb(110, 25, 75)
HSL Code hsl(325, 63%, 26%)

#6e194b Color Syntax

rgb()

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

 main {
    background-color: rgb(110, 25, 75);
   }

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(325, 63%, 26%);
  }

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 #6e194b

RGB Code Hex Code Preview
rgb(110, 25, 75, 10%) #6e194b1a  
rgb(110, 25, 75, 20%) #6e194b33  
rgb(110, 25, 75, 40%) #6e194b4C  
rgb(110, 25, 75, 60%) #6e194b99  
rgb(110, 25, 75, 80%) #6e194bCC  
rgb(110, 25, 75, 100%) #6e194bFF  

Saturated and desaturated colors of #6e194b

HSL Code Preview
hsl(325, 10%, 26%)  
hsl(325, 20%, 26%)  
hsl(325, 40%, 26%)  
hsl(325, 60%, 26%)  
hsl(325, 80%, 26%)  
hsl(325, 100%, 26%)  

#6e194b Color Usage In CSS

 body {
    color: #6e194b;
    }
 p {
    color: rgb(110, 25, 75);
    }
 header {
    border-bottom:1px solid #6e194b;
    }
Recent Random Colors