Random Color Generator

#456686 Color

Color Codes
Hex Code #456686
RGB Code rgb(69, 102, 134)
HSL Code hsl(210, 32%, 40%)

#456686 Color Syntax

rgb()

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

 main {
    background-color: rgb(69, 102, 134);
   }

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(210, 32%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(69, 102, 134, 10%) #4566861a  
rgb(69, 102, 134, 20%) #45668633  
rgb(69, 102, 134, 40%) #4566864C  
rgb(69, 102, 134, 60%) #45668699  
rgb(69, 102, 134, 80%) #456686CC  
rgb(69, 102, 134, 100%) #456686FF  

Saturated and desaturated colors of #456686

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

#456686 Color Usage In CSS

 body {
    color: #456686;
    }
 p {
    color: rgb(69, 102, 134);
    }
 header {
    border-bottom:1px solid #456686;
    }
Recent Random Colors