Random Color Generator

#4c669b Color

Color Codes
Hex Code #4c669b
RGB Code rgb(76, 102, 155)
HSL Code hsl(220, 34%, 45%)

#4c669b Color Syntax

rgb()

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

 main {
    background-color: rgb(76, 102, 155);
   }

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(220, 34%, 45%);
  }

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 #4c669b

RGB Code Hex Code Preview
rgb(76, 102, 155, 10%) #4c669b1a  
rgb(76, 102, 155, 20%) #4c669b33  
rgb(76, 102, 155, 40%) #4c669b4C  
rgb(76, 102, 155, 60%) #4c669b99  
rgb(76, 102, 155, 80%) #4c669bCC  
rgb(76, 102, 155, 100%) #4c669bFF  

Saturated and desaturated colors of #4c669b

HSL Code Preview
hsl(220, 10%, 45%)  
hsl(220, 20%, 45%)  
hsl(220, 40%, 45%)  
hsl(220, 60%, 45%)  
hsl(220, 80%, 45%)  
hsl(220, 100%, 45%)  

#4c669b Color Usage In CSS

 body {
    color: #4c669b;
    }
 p {
    color: rgb(76, 102, 155);
    }
 header {
    border-bottom:1px solid #4c669b;
    }
Recent Random Colors