Random Color Generator

#00073b Color

Color Codes
Hex Code #00073b
RGB Code rgb(00, 07, 59)
HSL Code hsl(233, 100%, 12%)

#00073b Color Syntax

rgb()

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

 main {
    background-color: rgb(00, 07, 59);
   }

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(233, 100%, 12%);
  }

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 #00073b

RGB Code Hex Code Preview
rgb(00, 07, 59, 10%) #00073b1a  
rgb(00, 07, 59, 20%) #00073b33  
rgb(00, 07, 59, 40%) #00073b4C  
rgb(00, 07, 59, 60%) #00073b99  
rgb(00, 07, 59, 80%) #00073bCC  
rgb(00, 07, 59, 100%) #00073bFF  

Saturated and desaturated colors of #00073b

HSL Code Preview
hsl(233, 10%, 12%)  
hsl(233, 20%, 12%)  
hsl(233, 40%, 12%)  
hsl(233, 60%, 12%)  
hsl(233, 80%, 12%)  
hsl(233, 100%, 12%)  

#00073b Color Usage In CSS

 body {
    color: #00073b;
    }
 p {
    color: rgb(00, 07, 59);
    }
 header {
    border-bottom:1px solid #00073b;
    }
Recent Random Colors