Random Color Generator

#636596 Color

Color Codes
Hex Code #636596
RGB Code rgb(99, 101, 150)
HSL Code hsl(238, 20%, 49%)

#636596 Color Syntax

rgb()

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

 main {
    background-color: rgb(99, 101, 150);
   }

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(238, 20%, 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 #636596

RGB Code Hex Code Preview
rgb(99, 101, 150, 10%) #6365961a  
rgb(99, 101, 150, 20%) #63659633  
rgb(99, 101, 150, 40%) #6365964C  
rgb(99, 101, 150, 60%) #63659699  
rgb(99, 101, 150, 80%) #636596CC  
rgb(99, 101, 150, 100%) #636596FF  

Saturated and desaturated colors of #636596

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

#636596 Color Usage In CSS

 body {
    color: #636596;
    }
 p {
    color: rgb(99, 101, 150);
    }
 header {
    border-bottom:1px solid #636596;
    }
Recent Random Colors