Random Color Generator

#0bd5ed Color

Color Codes
Hex Code #0bd5ed
RGB Code rgb(11, 213, 237)
HSL Code hsl(186, 91%, 49%)

#0bd5ed Color Syntax

rgb()

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

 main {
    background-color: rgb(11, 213, 237);
   }

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(186, 91%, 49%);
  }

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 #0bd5ed

RGB Code Hex Code Preview
rgb(11, 213, 237, 10%) #0bd5ed1a  
rgb(11, 213, 237, 20%) #0bd5ed33  
rgb(11, 213, 237, 40%) #0bd5ed4C  
rgb(11, 213, 237, 60%) #0bd5ed99  
rgb(11, 213, 237, 80%) #0bd5edCC  
rgb(11, 213, 237, 100%) #0bd5edFF  

Saturated and desaturated colors of #0bd5ed

HSL Code Preview
hsl(186, 10%, 49%)  
hsl(186, 20%, 49%)  
hsl(186, 40%, 49%)  
hsl(186, 60%, 49%)  
hsl(186, 80%, 49%)  
hsl(186, 100%, 49%)  

#0bd5ed Color Usage In CSS

 body {
    color: #0bd5ed;
    }
 p {
    color: rgb(11, 213, 237);
    }
 header {
    border-bottom:1px solid #0bd5ed;
    }
Recent Random Colors