Random Color Generator

#691b74 Color

Color Codes
Hex Code #691b74
RGB Code rgb(105, 27, 116)
HSL Code hsl(293, 62%, 28%)

#691b74 Color Syntax

rgb()

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

 main {
    background-color: rgb(105, 27, 116);
   }

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(293, 62%, 28%);
  }

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 #691b74

RGB Code Hex Code Preview
rgb(105, 27, 116, 10%) #691b741a  
rgb(105, 27, 116, 20%) #691b7433  
rgb(105, 27, 116, 40%) #691b744C  
rgb(105, 27, 116, 60%) #691b7499  
rgb(105, 27, 116, 80%) #691b74CC  
rgb(105, 27, 116, 100%) #691b74FF  

Saturated and desaturated colors of #691b74

HSL Code Preview
hsl(293, 10%, 28%)  
hsl(293, 20%, 28%)  
hsl(293, 40%, 28%)  
hsl(293, 60%, 28%)  
hsl(293, 80%, 28%)  
hsl(293, 100%, 28%)  

#691b74 Color Usage In CSS

 body {
    color: #691b74;
    }
 p {
    color: rgb(105, 27, 116);
    }
 header {
    border-bottom:1px solid #691b74;
    }
Recent Random Colors