Random Color Generator

#201dcb Color

Color Codes
Hex Code #201dcb
RGB Code rgb(32, 29, 203)
HSL Code hsl(241, 75%, 45%)

#201dcb Color Syntax

rgb()

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

 main {
    background-color: rgb(32, 29, 203);
   }

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(241, 75%, 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 #201dcb

RGB Code Hex Code Preview
rgb(32, 29, 203, 10%) #201dcb1a  
rgb(32, 29, 203, 20%) #201dcb33  
rgb(32, 29, 203, 40%) #201dcb4C  
rgb(32, 29, 203, 60%) #201dcb99  
rgb(32, 29, 203, 80%) #201dcbCC  
rgb(32, 29, 203, 100%) #201dcbFF  

Saturated and desaturated colors of #201dcb

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

#201dcb Color Usage In CSS

 body {
    color: #201dcb;
    }
 p {
    color: rgb(32, 29, 203);
    }
 header {
    border-bottom:1px solid #201dcb;
    }
Recent Random Colors