Random Color Generator

#03316a Color

Color Codes
Hex Code #03316a
RGB Code rgb(03, 49, 106)
HSL Code hsl(213, 94%, 21%)

#03316a Color Syntax

rgb()

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

 main {
    background-color: rgb(03, 49, 106);
   }

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(213, 94%, 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 #03316a

RGB Code Hex Code Preview
rgb(03, 49, 106, 10%) #03316a1a  
rgb(03, 49, 106, 20%) #03316a33  
rgb(03, 49, 106, 40%) #03316a4C  
rgb(03, 49, 106, 60%) #03316a99  
rgb(03, 49, 106, 80%) #03316aCC  
rgb(03, 49, 106, 100%) #03316aFF  

Saturated and desaturated colors of #03316a

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

#03316a Color Usage In CSS

 body {
    color: #03316a;
    }
 p {
    color: rgb(03, 49, 106);
    }
 header {
    border-bottom:1px solid #03316a;
    }
Recent Random Colors