Random Color Generator

#0b4fc8 Color

Color Codes
Hex Code #0b4fc8
RGB Code rgb(11, 79, 200)
HSL Code hsl(218, 90%, 41%)

#0b4fc8 Color Syntax

rgb()

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

 main {
    background-color: rgb(11, 79, 200);
   }

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(218, 90%, 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 #0b4fc8

RGB Code Hex Code Preview
rgb(11, 79, 200, 10%) #0b4fc81a  
rgb(11, 79, 200, 20%) #0b4fc833  
rgb(11, 79, 200, 40%) #0b4fc84C  
rgb(11, 79, 200, 60%) #0b4fc899  
rgb(11, 79, 200, 80%) #0b4fc8CC  
rgb(11, 79, 200, 100%) #0b4fc8FF  

Saturated and desaturated colors of #0b4fc8

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

#0b4fc8 Color Usage In CSS

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