Random Color Generator

#733261 Color

Color Codes
Hex Code #733261
RGB Code rgb(115, 50, 97)
HSL Code hsl(317, 39%, 32%)

#733261 Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 50, 97);
   }

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(317, 39%, 32%);
  }

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

RGB Code Hex Code Preview
rgb(115, 50, 97, 10%) #7332611a  
rgb(115, 50, 97, 20%) #73326133  
rgb(115, 50, 97, 40%) #7332614C  
rgb(115, 50, 97, 60%) #73326199  
rgb(115, 50, 97, 80%) #733261CC  
rgb(115, 50, 97, 100%) #733261FF  

Saturated and desaturated colors of #733261

HSL Code Preview
hsl(317, 10%, 32%)  
hsl(317, 20%, 32%)  
hsl(317, 40%, 32%)  
hsl(317, 60%, 32%)  
hsl(317, 80%, 32%)  
hsl(317, 100%, 32%)  

#733261 Color Usage In CSS

 body {
    color: #733261;
    }
 p {
    color: rgb(115, 50, 97);
    }
 header {
    border-bottom:1px solid #733261;
    }
Recent Random Colors