Random Color Generator

#0985eb Color

Color Codes
Hex Code #0985eb
RGB Code rgb(09, 133, 235)
HSL Code hsl(207, 93%, 48%)

#0985eb Color Syntax

rgb()

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

 main {
    background-color: rgb(09, 133, 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(207, 93%, 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 #0985eb

RGB Code Hex Code Preview
rgb(09, 133, 235, 10%) #0985eb1a  
rgb(09, 133, 235, 20%) #0985eb33  
rgb(09, 133, 235, 40%) #0985eb4C  
rgb(09, 133, 235, 60%) #0985eb99  
rgb(09, 133, 235, 80%) #0985ebCC  
rgb(09, 133, 235, 100%) #0985ebFF  

Saturated and desaturated colors of #0985eb

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

#0985eb Color Usage In CSS

 body {
    color: #0985eb;
    }
 p {
    color: rgb(09, 133, 235);
    }
 header {
    border-bottom:1px solid #0985eb;
    }
Recent Random Colors