Random Color Generator

#788689 Color

Color Codes
Hex Code #788689
RGB Code rgb(120, 134, 137)
HSL Code hsl(191, 7%, 50%)

#788689 Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 134, 137);
   }

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(191, 7%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(120, 134, 137, 10%) #7886891a  
rgb(120, 134, 137, 20%) #78868933  
rgb(120, 134, 137, 40%) #7886894C  
rgb(120, 134, 137, 60%) #78868999  
rgb(120, 134, 137, 80%) #788689CC  
rgb(120, 134, 137, 100%) #788689FF  

Saturated and desaturated colors of #788689

HSL Code Preview
hsl(191, 10%, 50%)  
hsl(191, 20%, 50%)  
hsl(191, 40%, 50%)  
hsl(191, 60%, 50%)  
hsl(191, 80%, 50%)  
hsl(191, 100%, 50%)  

#788689 Color Usage In CSS

 body {
    color: #788689;
    }
 p {
    color: rgb(120, 134, 137);
    }
 header {
    border-bottom:1px solid #788689;
    }
Recent Random Colors