Random Color Generator

#042fa7 Color

Color Codes
Hex Code #042fa7
RGB Code rgb(04, 47, 167)
HSL Code hsl(224, 95%, 34%)

#042fa7 Color Syntax

rgb()

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

 main {
    background-color: rgb(04, 47, 167);
   }

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(224, 95%, 34%);
  }

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 #042fa7

RGB Code Hex Code Preview
rgb(04, 47, 167, 10%) #042fa71a  
rgb(04, 47, 167, 20%) #042fa733  
rgb(04, 47, 167, 40%) #042fa74C  
rgb(04, 47, 167, 60%) #042fa799  
rgb(04, 47, 167, 80%) #042fa7CC  
rgb(04, 47, 167, 100%) #042fa7FF  

Saturated and desaturated colors of #042fa7

HSL Code Preview
hsl(224, 10%, 34%)  
hsl(224, 20%, 34%)  
hsl(224, 40%, 34%)  
hsl(224, 60%, 34%)  
hsl(224, 80%, 34%)  
hsl(224, 100%, 34%)  

#042fa7 Color Usage In CSS

 body {
    color: #042fa7;
    }
 p {
    color: rgb(04, 47, 167);
    }
 header {
    border-bottom:1px solid #042fa7;
    }
Recent Random Colors