Random Color Generator

#7c8ed6 Color

Color Codes
Hex Code #7c8ed6
RGB Code rgb(124, 142, 214)
HSL Code hsl(228, 52%, 66%)

#7c8ed6 Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 142, 214);
   }

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(228, 52%, 66%);
  }

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

RGB Code Hex Code Preview
rgb(124, 142, 214, 10%) #7c8ed61a  
rgb(124, 142, 214, 20%) #7c8ed633  
rgb(124, 142, 214, 40%) #7c8ed64C  
rgb(124, 142, 214, 60%) #7c8ed699  
rgb(124, 142, 214, 80%) #7c8ed6CC  
rgb(124, 142, 214, 100%) #7c8ed6FF  

Saturated and desaturated colors of #7c8ed6

HSL Code Preview
hsl(228, 10%, 66%)  
hsl(228, 20%, 66%)  
hsl(228, 40%, 66%)  
hsl(228, 60%, 66%)  
hsl(228, 80%, 66%)  
hsl(228, 100%, 66%)  

#7c8ed6 Color Usage In CSS

 body {
    color: #7c8ed6;
    }
 p {
    color: rgb(124, 142, 214);
    }
 header {
    border-bottom:1px solid #7c8ed6;
    }
Recent Random Colors