Random Color Generator

#27a6eb Color

Color Codes
Hex Code #27a6eb
RGB Code rgb(39, 166, 235)
HSL Code hsl(201, 83%, 54%)

#27a6eb Color Syntax

rgb()

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

 main {
    background-color: rgb(39, 166, 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(201, 83%, 54%);
  }

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 #27a6eb

RGB Code Hex Code Preview
rgb(39, 166, 235, 10%) #27a6eb1a  
rgb(39, 166, 235, 20%) #27a6eb33  
rgb(39, 166, 235, 40%) #27a6eb4C  
rgb(39, 166, 235, 60%) #27a6eb99  
rgb(39, 166, 235, 80%) #27a6ebCC  
rgb(39, 166, 235, 100%) #27a6ebFF  

Saturated and desaturated colors of #27a6eb

HSL Code Preview
hsl(201, 10%, 54%)  
hsl(201, 20%, 54%)  
hsl(201, 40%, 54%)  
hsl(201, 60%, 54%)  
hsl(201, 80%, 54%)  
hsl(201, 100%, 54%)  

#27a6eb Color Usage In CSS

 body {
    color: #27a6eb;
    }
 p {
    color: rgb(39, 166, 235);
    }
 header {
    border-bottom:1px solid #27a6eb;
    }
Recent Random Colors