Random Color Generator

#1957fe Color

Color Codes
Hex Code #1957fe
RGB Code rgb(25, 87, 254)
HSL Code hsl(224, 99%, 55%)

#1957fe Color Syntax

rgb()

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

 main {
    background-color: rgb(25, 87, 254);
   }

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(224, 99%, 55%);
  }

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 #1957fe

RGB Code Hex Code Preview
rgb(25, 87, 254, 10%) #1957fe1a  
rgb(25, 87, 254, 20%) #1957fe33  
rgb(25, 87, 254, 40%) #1957fe4C  
rgb(25, 87, 254, 60%) #1957fe99  
rgb(25, 87, 254, 80%) #1957feCC  
rgb(25, 87, 254, 100%) #1957feFF  

Saturated and desaturated colors of #1957fe

HSL Code Preview
hsl(224, 10%, 55%)  
hsl(224, 20%, 55%)  
hsl(224, 40%, 55%)  
hsl(224, 60%, 55%)  
hsl(224, 80%, 55%)  
hsl(224, 100%, 55%)  

#1957fe Color Usage In CSS

 body {
    color: #1957fe;
    }
 p {
    color: rgb(25, 87, 254);
    }
 header {
    border-bottom:1px solid #1957fe;
    }
Recent Random Colors