Random Color Generator

#051b81 Color

Color Codes
Hex Code #051b81
RGB Code rgb(05, 27, 129)
HSL Code hsl(229, 93%, 26%)

#051b81 Color Syntax

rgb()

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

 main {
    background-color: rgb(05, 27, 129);
   }

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(229, 93%, 26%);
  }

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 #051b81

RGB Code Hex Code Preview
rgb(05, 27, 129, 10%) #051b811a  
rgb(05, 27, 129, 20%) #051b8133  
rgb(05, 27, 129, 40%) #051b814C  
rgb(05, 27, 129, 60%) #051b8199  
rgb(05, 27, 129, 80%) #051b81CC  
rgb(05, 27, 129, 100%) #051b81FF  

Saturated and desaturated colors of #051b81

HSL Code Preview
hsl(229, 10%, 26%)  
hsl(229, 20%, 26%)  
hsl(229, 40%, 26%)  
hsl(229, 60%, 26%)  
hsl(229, 80%, 26%)  
hsl(229, 100%, 26%)  

#051b81 Color Usage In CSS

 body {
    color: #051b81;
    }
 p {
    color: rgb(05, 27, 129);
    }
 header {
    border-bottom:1px solid #051b81;
    }
Recent Random Colors