Random Color Generator

#10bade Color

Color Codes
Hex Code #10bade
RGB Code rgb(16, 186, 222)
HSL Code hsl(190, 87%, 47%)

#10bade Color Syntax

rgb()

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

 main {
    background-color: rgb(16, 186, 222);
   }

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(190, 87%, 47%);
  }

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 #10bade

RGB Code Hex Code Preview
rgb(16, 186, 222, 10%) #10bade1a  
rgb(16, 186, 222, 20%) #10bade33  
rgb(16, 186, 222, 40%) #10bade4C  
rgb(16, 186, 222, 60%) #10bade99  
rgb(16, 186, 222, 80%) #10badeCC  
rgb(16, 186, 222, 100%) #10badeFF  

Saturated and desaturated colors of #10bade

HSL Code Preview
hsl(190, 10%, 47%)  
hsl(190, 20%, 47%)  
hsl(190, 40%, 47%)  
hsl(190, 60%, 47%)  
hsl(190, 80%, 47%)  
hsl(190, 100%, 47%)  

#10bade Color Usage In CSS

 body {
    color: #10bade;
    }
 p {
    color: rgb(16, 186, 222);
    }
 header {
    border-bottom:1px solid #10bade;
    }
Recent Random Colors