Random Color Generator

#7579b9 Color

Color Codes
Hex Code #7579b9
RGB Code rgb(117, 121, 185)
HSL Code hsl(236, 33%, 59%)

#7579b9 Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 121, 185);
   }

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(236, 33%, 59%);
  }

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 #7579b9

RGB Code Hex Code Preview
rgb(117, 121, 185, 10%) #7579b91a  
rgb(117, 121, 185, 20%) #7579b933  
rgb(117, 121, 185, 40%) #7579b94C  
rgb(117, 121, 185, 60%) #7579b999  
rgb(117, 121, 185, 80%) #7579b9CC  
rgb(117, 121, 185, 100%) #7579b9FF  

Saturated and desaturated colors of #7579b9

HSL Code Preview
hsl(236, 10%, 59%)  
hsl(236, 20%, 59%)  
hsl(236, 40%, 59%)  
hsl(236, 60%, 59%)  
hsl(236, 80%, 59%)  
hsl(236, 100%, 59%)  

#7579b9 Color Usage In CSS

 body {
    color: #7579b9;
    }
 p {
    color: rgb(117, 121, 185);
    }
 header {
    border-bottom:1px solid #7579b9;
    }
Recent Random Colors