Random Color Generator

#2136dc Color

Color Codes
Hex Code #2136dc
RGB Code rgb(33, 54, 220)
HSL Code hsl(233, 74%, 50%)

#2136dc Color Syntax

rgb()

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

 main {
    background-color: rgb(33, 54, 220);
   }

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(233, 74%, 50%);
  }

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 #2136dc

RGB Code Hex Code Preview
rgb(33, 54, 220, 10%) #2136dc1a  
rgb(33, 54, 220, 20%) #2136dc33  
rgb(33, 54, 220, 40%) #2136dc4C  
rgb(33, 54, 220, 60%) #2136dc99  
rgb(33, 54, 220, 80%) #2136dcCC  
rgb(33, 54, 220, 100%) #2136dcFF  

Saturated and desaturated colors of #2136dc

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

#2136dc Color Usage In CSS

 body {
    color: #2136dc;
    }
 p {
    color: rgb(33, 54, 220);
    }
 header {
    border-bottom:1px solid #2136dc;
    }
Recent Random Colors