Random Color Generator

#496971 Color

Color Codes
Hex Code #496971
RGB Code rgb(73, 105, 113)
HSL Code hsl(192, 22%, 36%)

#496971 Color Syntax

rgb()

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

 main {
    background-color: rgb(73, 105, 113);
   }

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(192, 22%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(73, 105, 113, 10%) #4969711a  
rgb(73, 105, 113, 20%) #49697133  
rgb(73, 105, 113, 40%) #4969714C  
rgb(73, 105, 113, 60%) #49697199  
rgb(73, 105, 113, 80%) #496971CC  
rgb(73, 105, 113, 100%) #496971FF  

Saturated and desaturated colors of #496971

HSL Code Preview
hsl(192, 10%, 36%)  
hsl(192, 20%, 36%)  
hsl(192, 40%, 36%)  
hsl(192, 60%, 36%)  
hsl(192, 80%, 36%)  
hsl(192, 100%, 36%)  

#496971 Color Usage In CSS

 body {
    color: #496971;
    }
 p {
    color: rgb(73, 105, 113);
    }
 header {
    border-bottom:1px solid #496971;
    }
Recent Random Colors