Random Color Generator

#0873ae Color

Color Codes
Hex Code #0873ae
RGB Code rgb(08, 115, 174)
HSL Code hsl(201, 91%, 36%)

#0873ae Color Syntax

rgb()

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

 main {
    background-color: rgb(08, 115, 174);
   }

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(201, 91%, 36%);
  }

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 #0873ae

RGB Code Hex Code Preview
rgb(08, 115, 174, 10%) #0873ae1a  
rgb(08, 115, 174, 20%) #0873ae33  
rgb(08, 115, 174, 40%) #0873ae4C  
rgb(08, 115, 174, 60%) #0873ae99  
rgb(08, 115, 174, 80%) #0873aeCC  
rgb(08, 115, 174, 100%) #0873aeFF  

Saturated and desaturated colors of #0873ae

HSL Code Preview
hsl(201, 10%, 36%)  
hsl(201, 20%, 36%)  
hsl(201, 40%, 36%)  
hsl(201, 60%, 36%)  
hsl(201, 80%, 36%)  
hsl(201, 100%, 36%)  

#0873ae Color Usage In CSS

 body {
    color: #0873ae;
    }
 p {
    color: rgb(08, 115, 174);
    }
 header {
    border-bottom:1px solid #0873ae;
    }
Recent Random Colors