Random Color Generator

#362cb2 Color

Color Codes
Hex Code #362cb2
RGB Code rgb(54, 44, 178)
HSL Code hsl(244, 60%, 44%)

#362cb2 Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 44, 178);
   }

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(244, 60%, 44%);
  }

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 #362cb2

RGB Code Hex Code Preview
rgb(54, 44, 178, 10%) #362cb21a  
rgb(54, 44, 178, 20%) #362cb233  
rgb(54, 44, 178, 40%) #362cb24C  
rgb(54, 44, 178, 60%) #362cb299  
rgb(54, 44, 178, 80%) #362cb2CC  
rgb(54, 44, 178, 100%) #362cb2FF  

Saturated and desaturated colors of #362cb2

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

#362cb2 Color Usage In CSS

 body {
    color: #362cb2;
    }
 p {
    color: rgb(54, 44, 178);
    }
 header {
    border-bottom:1px solid #362cb2;
    }
Recent Random Colors