Random Color Generator

#627a99 Color

Color Codes
Hex Code #627a99
RGB Code rgb(98, 122, 153)
HSL Code hsl(214, 22%, 49%)

#627a99 Color Syntax

rgb()

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

 main {
    background-color: rgb(98, 122, 153);
   }

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(214, 22%, 49%);
  }

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 #627a99

RGB Code Hex Code Preview
rgb(98, 122, 153, 10%) #627a991a  
rgb(98, 122, 153, 20%) #627a9933  
rgb(98, 122, 153, 40%) #627a994C  
rgb(98, 122, 153, 60%) #627a9999  
rgb(98, 122, 153, 80%) #627a99CC  
rgb(98, 122, 153, 100%) #627a99FF  

Saturated and desaturated colors of #627a99

HSL Code Preview
hsl(214, 10%, 49%)  
hsl(214, 20%, 49%)  
hsl(214, 40%, 49%)  
hsl(214, 60%, 49%)  
hsl(214, 80%, 49%)  
hsl(214, 100%, 49%)  

#627a99 Color Usage In CSS

 body {
    color: #627a99;
    }
 p {
    color: rgb(98, 122, 153);
    }
 header {
    border-bottom:1px solid #627a99;
    }
Recent Random Colors