Random Color Generator

#735066 Color

Color Codes
Hex Code #735066
RGB Code rgb(115, 80, 102)
HSL Code hsl(322, 18%, 38%)

#735066 Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 80, 102);
   }

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(322, 18%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(115, 80, 102, 10%) #7350661a  
rgb(115, 80, 102, 20%) #73506633  
rgb(115, 80, 102, 40%) #7350664C  
rgb(115, 80, 102, 60%) #73506699  
rgb(115, 80, 102, 80%) #735066CC  
rgb(115, 80, 102, 100%) #735066FF  

Saturated and desaturated colors of #735066

HSL Code Preview
hsl(322, 10%, 38%)  
hsl(322, 20%, 38%)  
hsl(322, 40%, 38%)  
hsl(322, 60%, 38%)  
hsl(322, 80%, 38%)  
hsl(322, 100%, 38%)  

#735066 Color Usage In CSS

 body {
    color: #735066;
    }
 p {
    color: rgb(115, 80, 102);
    }
 header {
    border-bottom:1px solid #735066;
    }
Recent Random Colors