Random Color Generator

#789498 Color

Color Codes
Hex Code #789498
RGB Code rgb(120, 148, 152)
HSL Code hsl(188, 13%, 53%)

#789498 Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 148, 152);
   }

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(188, 13%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(120, 148, 152, 10%) #7894981a  
rgb(120, 148, 152, 20%) #78949833  
rgb(120, 148, 152, 40%) #7894984C  
rgb(120, 148, 152, 60%) #78949899  
rgb(120, 148, 152, 80%) #789498CC  
rgb(120, 148, 152, 100%) #789498FF  

Saturated and desaturated colors of #789498

HSL Code Preview
hsl(188, 10%, 53%)  
hsl(188, 20%, 53%)  
hsl(188, 40%, 53%)  
hsl(188, 60%, 53%)  
hsl(188, 80%, 53%)  
hsl(188, 100%, 53%)  

#789498 Color Usage In CSS

 body {
    color: #789498;
    }
 p {
    color: rgb(120, 148, 152);
    }
 header {
    border-bottom:1px solid #789498;
    }
Recent Random Colors