Random Color Generator

#757ae9 Color

Color Codes
Hex Code #757ae9
RGB Code rgb(117, 122, 233)
HSL Code hsl(237, 73%, 69%)

#757ae9 Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 122, 233);
   }

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(237, 73%, 69%);
  }

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 #757ae9

RGB Code Hex Code Preview
rgb(117, 122, 233, 10%) #757ae91a  
rgb(117, 122, 233, 20%) #757ae933  
rgb(117, 122, 233, 40%) #757ae94C  
rgb(117, 122, 233, 60%) #757ae999  
rgb(117, 122, 233, 80%) #757ae9CC  
rgb(117, 122, 233, 100%) #757ae9FF  

Saturated and desaturated colors of #757ae9

HSL Code Preview
hsl(237, 10%, 69%)  
hsl(237, 20%, 69%)  
hsl(237, 40%, 69%)  
hsl(237, 60%, 69%)  
hsl(237, 80%, 69%)  
hsl(237, 100%, 69%)  

#757ae9 Color Usage In CSS

 body {
    color: #757ae9;
    }
 p {
    color: rgb(117, 122, 233);
    }
 header {
    border-bottom:1px solid #757ae9;
    }
Recent Random Colors