Random Color Generator

#0ea2bb Color

Color Codes
Hex Code #0ea2bb
RGB Code rgb(14, 162, 187)
HSL Code hsl(189, 86%, 39%)

#0ea2bb Color Syntax

rgb()

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

 main {
    background-color: rgb(14, 162, 187);
   }

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(189, 86%, 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 #0ea2bb

RGB Code Hex Code Preview
rgb(14, 162, 187, 10%) #0ea2bb1a  
rgb(14, 162, 187, 20%) #0ea2bb33  
rgb(14, 162, 187, 40%) #0ea2bb4C  
rgb(14, 162, 187, 60%) #0ea2bb99  
rgb(14, 162, 187, 80%) #0ea2bbCC  
rgb(14, 162, 187, 100%) #0ea2bbFF  

Saturated and desaturated colors of #0ea2bb

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

#0ea2bb Color Usage In CSS

 body {
    color: #0ea2bb;
    }
 p {
    color: rgb(14, 162, 187);
    }
 header {
    border-bottom:1px solid #0ea2bb;
    }
Recent Random Colors