Random Color Generator

#0982ad Color

Color Codes
Hex Code #0982ad
RGB Code rgb(09, 130, 173)
HSL Code hsl(196, 90%, 36%)

#0982ad Color Syntax

rgb()

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

 main {
    background-color: rgb(09, 130, 173);
   }

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(196, 90%, 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 #0982ad

RGB Code Hex Code Preview
rgb(09, 130, 173, 10%) #0982ad1a  
rgb(09, 130, 173, 20%) #0982ad33  
rgb(09, 130, 173, 40%) #0982ad4C  
rgb(09, 130, 173, 60%) #0982ad99  
rgb(09, 130, 173, 80%) #0982adCC  
rgb(09, 130, 173, 100%) #0982adFF  

Saturated and desaturated colors of #0982ad

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

#0982ad Color Usage In CSS

 body {
    color: #0982ad;
    }
 p {
    color: rgb(09, 130, 173);
    }
 header {
    border-bottom:1px solid #0982ad;
    }
Recent Random Colors