Random Color Generator

#636062 Color

Color Codes
Hex Code #636062
RGB Code rgb(99, 96, 98)
HSL Code hsl(320, 2%, 38%)

#636062 Color Syntax

rgb()

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

 main {
    background-color: rgb(99, 96, 98);
   }

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(320, 2%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(99, 96, 98, 10%) #6360621a  
rgb(99, 96, 98, 20%) #63606233  
rgb(99, 96, 98, 40%) #6360624C  
rgb(99, 96, 98, 60%) #63606299  
rgb(99, 96, 98, 80%) #636062CC  
rgb(99, 96, 98, 100%) #636062FF  

Saturated and desaturated colors of #636062

HSL Code Preview
hsl(320, 10%, 38%)  
hsl(320, 20%, 38%)  
hsl(320, 40%, 38%)  
hsl(320, 60%, 38%)  
hsl(320, 80%, 38%)  
hsl(320, 100%, 38%)  

#636062 Color Usage In CSS

 body {
    color: #636062;
    }
 p {
    color: rgb(99, 96, 98);
    }
 header {
    border-bottom:1px solid #636062;
    }
Recent Random Colors