Random Color Generator

#236bbd Color

Color Codes
Hex Code #236bbd
RGB Code rgb(35, 107, 189)
HSL Code hsl(212, 69%, 44%)

#236bbd Color Syntax

rgb()

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

 main {
    background-color: rgb(35, 107, 189);
   }

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(212, 69%, 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 #236bbd

RGB Code Hex Code Preview
rgb(35, 107, 189, 10%) #236bbd1a  
rgb(35, 107, 189, 20%) #236bbd33  
rgb(35, 107, 189, 40%) #236bbd4C  
rgb(35, 107, 189, 60%) #236bbd99  
rgb(35, 107, 189, 80%) #236bbdCC  
rgb(35, 107, 189, 100%) #236bbdFF  

Saturated and desaturated colors of #236bbd

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

#236bbd Color Usage In CSS

 body {
    color: #236bbd;
    }
 p {
    color: rgb(35, 107, 189);
    }
 header {
    border-bottom:1px solid #236bbd;
    }
Recent Random Colors