Random Color Generator

#053968 Color

Color Codes
Hex Code #053968
RGB Code rgb(05, 57, 104)
HSL Code hsl(208, 91%, 21%)

#053968 Color Syntax

rgb()

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

 main {
    background-color: rgb(05, 57, 104);
   }

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, 91%, 21%);
  }

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 #053968

RGB Code Hex Code Preview
rgb(05, 57, 104, 10%) #0539681a  
rgb(05, 57, 104, 20%) #05396833  
rgb(05, 57, 104, 40%) #0539684C  
rgb(05, 57, 104, 60%) #05396899  
rgb(05, 57, 104, 80%) #053968CC  
rgb(05, 57, 104, 100%) #053968FF  

Saturated and desaturated colors of #053968

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

#053968 Color Usage In CSS

 body {
    color: #053968;
    }
 p {
    color: rgb(05, 57, 104);
    }
 header {
    border-bottom:1px solid #053968;
    }
Recent Random Colors