Random Color Generator

#090a74 Color

Color Codes
Hex Code #090a74
RGB Code rgb(09, 10, 116)
HSL Code hsl(239, 86%, 25%)

#090a74 Color Syntax

rgb()

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

 main {
    background-color: rgb(09, 10, 116);
   }

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(239, 86%, 25%);
  }

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 #090a74

RGB Code Hex Code Preview
rgb(09, 10, 116, 10%) #090a741a  
rgb(09, 10, 116, 20%) #090a7433  
rgb(09, 10, 116, 40%) #090a744C  
rgb(09, 10, 116, 60%) #090a7499  
rgb(09, 10, 116, 80%) #090a74CC  
rgb(09, 10, 116, 100%) #090a74FF  

Saturated and desaturated colors of #090a74

HSL Code Preview
hsl(239, 10%, 25%)  
hsl(239, 20%, 25%)  
hsl(239, 40%, 25%)  
hsl(239, 60%, 25%)  
hsl(239, 80%, 25%)  
hsl(239, 100%, 25%)  

#090a74 Color Usage In CSS

 body {
    color: #090a74;
    }
 p {
    color: rgb(09, 10, 116);
    }
 header {
    border-bottom:1px solid #090a74;
    }
Recent Random Colors