Random Color Generator

#4e7778 Color

Color Codes
Hex Code #4e7778
RGB Code rgb(78, 119, 120)
HSL Code hsl(181, 21%, 39%)

#4e7778 Color Syntax

rgb()

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

 main {
    background-color: rgb(78, 119, 120);
   }

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(181, 21%, 39%);
  }

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 #4e7778

RGB Code Hex Code Preview
rgb(78, 119, 120, 10%) #4e77781a  
rgb(78, 119, 120, 20%) #4e777833  
rgb(78, 119, 120, 40%) #4e77784C  
rgb(78, 119, 120, 60%) #4e777899  
rgb(78, 119, 120, 80%) #4e7778CC  
rgb(78, 119, 120, 100%) #4e7778FF  

Saturated and desaturated colors of #4e7778

HSL Code Preview
hsl(181, 10%, 39%)  
hsl(181, 20%, 39%)  
hsl(181, 40%, 39%)  
hsl(181, 60%, 39%)  
hsl(181, 80%, 39%)  
hsl(181, 100%, 39%)  

#4e7778 Color Usage In CSS

 body {
    color: #4e7778;
    }
 p {
    color: rgb(78, 119, 120);
    }
 header {
    border-bottom:1px solid #4e7778;
    }
Recent Random Colors