Random Color Generator

#0161c6 Color

Color Codes
Hex Code #0161c6
RGB Code rgb(01, 97, 198)
HSL Code hsl(211, 99%, 39%)

#0161c6 Color Syntax

rgb()

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

 main {
    background-color: rgb(01, 97, 198);
   }

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(211, 99%, 39%);
  }

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 #0161c6

RGB Code Hex Code Preview
rgb(01, 97, 198, 10%) #0161c61a  
rgb(01, 97, 198, 20%) #0161c633  
rgb(01, 97, 198, 40%) #0161c64C  
rgb(01, 97, 198, 60%) #0161c699  
rgb(01, 97, 198, 80%) #0161c6CC  
rgb(01, 97, 198, 100%) #0161c6FF  

Saturated and desaturated colors of #0161c6

HSL Code Preview
hsl(211, 10%, 39%)  
hsl(211, 20%, 39%)  
hsl(211, 40%, 39%)  
hsl(211, 60%, 39%)  
hsl(211, 80%, 39%)  
hsl(211, 100%, 39%)  

#0161c6 Color Usage In CSS

 body {
    color: #0161c6;
    }
 p {
    color: rgb(01, 97, 198);
    }
 header {
    border-bottom:1px solid #0161c6;
    }
Recent Random Colors