Random Color Generator

#0a91cc Color

Color Codes
Hex Code #0a91cc
RGB Code rgb(10, 145, 204)
HSL Code hsl(198, 91%, 42%)

#0a91cc Color Syntax

rgb()

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

 main {
    background-color: rgb(10, 145, 204);
   }

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(198, 91%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(10, 145, 204, 10%) #0a91cc1a  
rgb(10, 145, 204, 20%) #0a91cc33  
rgb(10, 145, 204, 40%) #0a91cc4C  
rgb(10, 145, 204, 60%) #0a91cc99  
rgb(10, 145, 204, 80%) #0a91ccCC  
rgb(10, 145, 204, 100%) #0a91ccFF  

Saturated and desaturated colors of #0a91cc

HSL Code Preview
hsl(198, 10%, 42%)  
hsl(198, 20%, 42%)  
hsl(198, 40%, 42%)  
hsl(198, 60%, 42%)  
hsl(198, 80%, 42%)  
hsl(198, 100%, 42%)  

#0a91cc Color Usage In CSS

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