Random Color Generator

#070589 Color

Color Codes
Hex Code #070589
RGB Code rgb(07, 05, 137)
HSL Code hsl(241, 93%, 28%)

#070589 Color Syntax

rgb()

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

 main {
    background-color: rgb(07, 05, 137);
   }

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(241, 93%, 28%);
  }

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

RGB Code Hex Code Preview
rgb(07, 05, 137, 10%) #0705891a  
rgb(07, 05, 137, 20%) #07058933  
rgb(07, 05, 137, 40%) #0705894C  
rgb(07, 05, 137, 60%) #07058999  
rgb(07, 05, 137, 80%) #070589CC  
rgb(07, 05, 137, 100%) #070589FF  

Saturated and desaturated colors of #070589

HSL Code Preview
hsl(241, 10%, 28%)  
hsl(241, 20%, 28%)  
hsl(241, 40%, 28%)  
hsl(241, 60%, 28%)  
hsl(241, 80%, 28%)  
hsl(241, 100%, 28%)  

#070589 Color Usage In CSS

 body {
    color: #070589;
    }
 p {
    color: rgb(07, 05, 137);
    }
 header {
    border-bottom:1px solid #070589;
    }
Recent Random Colors