Random Color Generator

#136bbc Color

Color Codes
Hex Code #136bbc
RGB Code rgb(19, 107, 188)
HSL Code hsl(209, 82%, 41%)

#136bbc Color Syntax

rgb()

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

 main {
    background-color: rgb(19, 107, 188);
   }

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(209, 82%, 41%);
  }

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 #136bbc

RGB Code Hex Code Preview
rgb(19, 107, 188, 10%) #136bbc1a  
rgb(19, 107, 188, 20%) #136bbc33  
rgb(19, 107, 188, 40%) #136bbc4C  
rgb(19, 107, 188, 60%) #136bbc99  
rgb(19, 107, 188, 80%) #136bbcCC  
rgb(19, 107, 188, 100%) #136bbcFF  

Saturated and desaturated colors of #136bbc

HSL Code Preview
hsl(209, 10%, 41%)  
hsl(209, 20%, 41%)  
hsl(209, 40%, 41%)  
hsl(209, 60%, 41%)  
hsl(209, 80%, 41%)  
hsl(209, 100%, 41%)  

#136bbc Color Usage In CSS

 body {
    color: #136bbc;
    }
 p {
    color: rgb(19, 107, 188);
    }
 header {
    border-bottom:1px solid #136bbc;
    }
Recent Random Colors