Random Color Generator

#7775ef Color

Color Codes
Hex Code #7775ef
RGB Code rgb(119, 117, 239)
HSL Code hsl(241, 79%, 70%)

#7775ef Color Syntax

rgb()

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

 main {
    background-color: rgb(119, 117, 239);
   }

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(241, 79%, 70%);
  }

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 #7775ef

RGB Code Hex Code Preview
rgb(119, 117, 239, 10%) #7775ef1a  
rgb(119, 117, 239, 20%) #7775ef33  
rgb(119, 117, 239, 40%) #7775ef4C  
rgb(119, 117, 239, 60%) #7775ef99  
rgb(119, 117, 239, 80%) #7775efCC  
rgb(119, 117, 239, 100%) #7775efFF  

Saturated and desaturated colors of #7775ef

HSL Code Preview
hsl(241, 10%, 70%)  
hsl(241, 20%, 70%)  
hsl(241, 40%, 70%)  
hsl(241, 60%, 70%)  
hsl(241, 80%, 70%)  
hsl(241, 100%, 70%)  

#7775ef Color Usage In CSS

 body {
    color: #7775ef;
    }
 p {
    color: rgb(119, 117, 239);
    }
 header {
    border-bottom:1px solid #7775ef;
    }
Recent Random Colors