Random Color Generator

#127ec1 Color

Color Codes
Hex Code #127ec1
RGB Code rgb(18, 126, 193)
HSL Code hsl(203, 83%, 41%)

#127ec1 Color Syntax

rgb()

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

 main {
    background-color: rgb(18, 126, 193);
   }

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(203, 83%, 41%);
  }

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 #127ec1

RGB Code Hex Code Preview
rgb(18, 126, 193, 10%) #127ec11a  
rgb(18, 126, 193, 20%) #127ec133  
rgb(18, 126, 193, 40%) #127ec14C  
rgb(18, 126, 193, 60%) #127ec199  
rgb(18, 126, 193, 80%) #127ec1CC  
rgb(18, 126, 193, 100%) #127ec1FF  

Saturated and desaturated colors of #127ec1

HSL Code Preview
hsl(203, 10%, 41%)  
hsl(203, 20%, 41%)  
hsl(203, 40%, 41%)  
hsl(203, 60%, 41%)  
hsl(203, 80%, 41%)  
hsl(203, 100%, 41%)  

#127ec1 Color Usage In CSS

 body {
    color: #127ec1;
    }
 p {
    color: rgb(18, 126, 193);
    }
 header {
    border-bottom:1px solid #127ec1;
    }
Recent Random Colors