Random Color Generator

#0a62eb Color

Color Codes
Hex Code #0a62eb
RGB Code rgb(10, 98, 235)
HSL Code hsl(217, 92%, 48%)

#0a62eb Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 98, 235);
   }

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(217, 92%, 48%);
  }

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 #0a62eb

RGB Code Hex Code Preview
rgb(10, 98, 235, 10%) #0a62eb1a  
rgb(10, 98, 235, 20%) #0a62eb33  
rgb(10, 98, 235, 40%) #0a62eb4C  
rgb(10, 98, 235, 60%) #0a62eb99  
rgb(10, 98, 235, 80%) #0a62ebCC  
rgb(10, 98, 235, 100%) #0a62ebFF  

Saturated and desaturated colors of #0a62eb

HSL Code Preview
hsl(217, 10%, 48%)  
hsl(217, 20%, 48%)  
hsl(217, 40%, 48%)  
hsl(217, 60%, 48%)  
hsl(217, 80%, 48%)  
hsl(217, 100%, 48%)  

#0a62eb Color Usage In CSS

 body {
    color: #0a62eb;
    }
 p {
    color: rgb(10, 98, 235);
    }
 header {
    border-bottom:1px solid #0a62eb;
    }
Recent Random Colors