Random Color Generator

#7392ed Color

Color Codes
Hex Code #7392ed
RGB Code rgb(115, 146, 237)
HSL Code hsl(225, 77%, 69%)

#7392ed Color Syntax

rgb()

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

 main {
    background-color: rgb(115, 146, 237);
   }

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(225, 77%, 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 #7392ed

RGB Code Hex Code Preview
rgb(115, 146, 237, 10%) #7392ed1a  
rgb(115, 146, 237, 20%) #7392ed33  
rgb(115, 146, 237, 40%) #7392ed4C  
rgb(115, 146, 237, 60%) #7392ed99  
rgb(115, 146, 237, 80%) #7392edCC  
rgb(115, 146, 237, 100%) #7392edFF  

Saturated and desaturated colors of #7392ed

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

#7392ed Color Usage In CSS

 body {
    color: #7392ed;
    }
 p {
    color: rgb(115, 146, 237);
    }
 header {
    border-bottom:1px solid #7392ed;
    }
Recent Random Colors