Random Color Generator

#1c57db Color

Color Codes
Hex Code #1c57db
RGB Code rgb(28, 87, 219)
HSL Code hsl(221, 77%, 48%)

#1c57db Color Syntax

rgb()

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

 main {
    background-color: rgb(28, 87, 219);
   }

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(221, 77%, 48%);
  }

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 #1c57db

RGB Code Hex Code Preview
rgb(28, 87, 219, 10%) #1c57db1a  
rgb(28, 87, 219, 20%) #1c57db33  
rgb(28, 87, 219, 40%) #1c57db4C  
rgb(28, 87, 219, 60%) #1c57db99  
rgb(28, 87, 219, 80%) #1c57dbCC  
rgb(28, 87, 219, 100%) #1c57dbFF  

Saturated and desaturated colors of #1c57db

HSL Code Preview
hsl(221, 10%, 48%)  
hsl(221, 20%, 48%)  
hsl(221, 40%, 48%)  
hsl(221, 60%, 48%)  
hsl(221, 80%, 48%)  
hsl(221, 100%, 48%)  

#1c57db Color Usage In CSS

 body {
    color: #1c57db;
    }
 p {
    color: rgb(28, 87, 219);
    }
 header {
    border-bottom:1px solid #1c57db;
    }
Recent Random Colors