Random Color Generator

#0b63af Color

Color Codes
Hex Code #0b63af
RGB Code rgb(11, 99, 175)
HSL Code hsl(208, 88%, 36%)

#0b63af Color Syntax

rgb()

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

 main {
    background-color: rgb(11, 99, 175);
   }

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(208, 88%, 36%);
  }

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 #0b63af

RGB Code Hex Code Preview
rgb(11, 99, 175, 10%) #0b63af1a  
rgb(11, 99, 175, 20%) #0b63af33  
rgb(11, 99, 175, 40%) #0b63af4C  
rgb(11, 99, 175, 60%) #0b63af99  
rgb(11, 99, 175, 80%) #0b63afCC  
rgb(11, 99, 175, 100%) #0b63afFF  

Saturated and desaturated colors of #0b63af

HSL Code Preview
hsl(208, 10%, 36%)  
hsl(208, 20%, 36%)  
hsl(208, 40%, 36%)  
hsl(208, 60%, 36%)  
hsl(208, 80%, 36%)  
hsl(208, 100%, 36%)  

#0b63af Color Usage In CSS

 body {
    color: #0b63af;
    }
 p {
    color: rgb(11, 99, 175);
    }
 header {
    border-bottom:1px solid #0b63af;
    }
Recent Random Colors