Random Color Generator

#0b35cc Color

Color Codes
Hex Code #0b35cc
RGB Code rgb(11, 53, 204)
HSL Code hsl(227, 90%, 42%)

#0b35cc Color Syntax

rgb()

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

 main {
    background-color: rgb(11, 53, 204);
   }

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(227, 90%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(11, 53, 204, 10%) #0b35cc1a  
rgb(11, 53, 204, 20%) #0b35cc33  
rgb(11, 53, 204, 40%) #0b35cc4C  
rgb(11, 53, 204, 60%) #0b35cc99  
rgb(11, 53, 204, 80%) #0b35ccCC  
rgb(11, 53, 204, 100%) #0b35ccFF  

Saturated and desaturated colors of #0b35cc

HSL Code Preview
hsl(227, 10%, 42%)  
hsl(227, 20%, 42%)  
hsl(227, 40%, 42%)  
hsl(227, 60%, 42%)  
hsl(227, 80%, 42%)  
hsl(227, 100%, 42%)  

#0b35cc Color Usage In CSS

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