Random Color Generator

#32445f Color

Color Codes
Hex Code #32445f
RGB Code rgb(50, 68, 95)
HSL Code hsl(216, 31%, 28%)

#32445f Color Syntax

rgb()

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

 main {
    background-color: rgb(50, 68, 95);
   }

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(216, 31%, 28%);
  }

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 #32445f

RGB Code Hex Code Preview
rgb(50, 68, 95, 10%) #32445f1a  
rgb(50, 68, 95, 20%) #32445f33  
rgb(50, 68, 95, 40%) #32445f4C  
rgb(50, 68, 95, 60%) #32445f99  
rgb(50, 68, 95, 80%) #32445fCC  
rgb(50, 68, 95, 100%) #32445fFF  

Saturated and desaturated colors of #32445f

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

#32445f Color Usage In CSS

 body {
    color: #32445f;
    }
 p {
    color: rgb(50, 68, 95);
    }
 header {
    border-bottom:1px solid #32445f;
    }
Recent Random Colors