Random Color Generator

#7888dd Color

Color Codes
Hex Code #7888dd
RGB Code rgb(120, 136, 221)
HSL Code hsl(230, 60%, 67%)

#7888dd Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 136, 221);
   }

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(230, 60%, 67%);
  }

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 #7888dd

RGB Code Hex Code Preview
rgb(120, 136, 221, 10%) #7888dd1a  
rgb(120, 136, 221, 20%) #7888dd33  
rgb(120, 136, 221, 40%) #7888dd4C  
rgb(120, 136, 221, 60%) #7888dd99  
rgb(120, 136, 221, 80%) #7888ddCC  
rgb(120, 136, 221, 100%) #7888ddFF  

Saturated and desaturated colors of #7888dd

HSL Code Preview
hsl(230, 10%, 67%)  
hsl(230, 20%, 67%)  
hsl(230, 40%, 67%)  
hsl(230, 60%, 67%)  
hsl(230, 80%, 67%)  
hsl(230, 100%, 67%)  

#7888dd Color Usage In CSS

 body {
    color: #7888dd;
    }
 p {
    color: rgb(120, 136, 221);
    }
 header {
    border-bottom:1px solid #7888dd;
    }
Recent Random Colors