Random Color Generator

#7689ae Color

Color Codes
Hex Code #7689ae
RGB Code rgb(118, 137, 174)
HSL Code hsl(220, 26%, 57%)

#7689ae Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 137, 174);
   }

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(220, 26%, 57%);
  }

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 #7689ae

RGB Code Hex Code Preview
rgb(118, 137, 174, 10%) #7689ae1a  
rgb(118, 137, 174, 20%) #7689ae33  
rgb(118, 137, 174, 40%) #7689ae4C  
rgb(118, 137, 174, 60%) #7689ae99  
rgb(118, 137, 174, 80%) #7689aeCC  
rgb(118, 137, 174, 100%) #7689aeFF  

Saturated and desaturated colors of #7689ae

HSL Code Preview
hsl(220, 10%, 57%)  
hsl(220, 20%, 57%)  
hsl(220, 40%, 57%)  
hsl(220, 60%, 57%)  
hsl(220, 80%, 57%)  
hsl(220, 100%, 57%)  

#7689ae Color Usage In CSS

 body {
    color: #7689ae;
    }
 p {
    color: rgb(118, 137, 174);
    }
 header {
    border-bottom:1px solid #7689ae;
    }
Recent Random Colors