Random Color Generator

#1e75f5 Color

Color Codes
Hex Code #1e75f5
RGB Code rgb(30, 117, 245)
HSL Code hsl(216, 91%, 54%)

#1e75f5 Color Syntax

rgb()

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

 main {
    background-color: rgb(30, 117, 245);
   }

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(216, 91%, 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 #1e75f5

RGB Code Hex Code Preview
rgb(30, 117, 245, 10%) #1e75f51a  
rgb(30, 117, 245, 20%) #1e75f533  
rgb(30, 117, 245, 40%) #1e75f54C  
rgb(30, 117, 245, 60%) #1e75f599  
rgb(30, 117, 245, 80%) #1e75f5CC  
rgb(30, 117, 245, 100%) #1e75f5FF  

Saturated and desaturated colors of #1e75f5

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

#1e75f5 Color Usage In CSS

 body {
    color: #1e75f5;
    }
 p {
    color: rgb(30, 117, 245);
    }
 header {
    border-bottom:1px solid #1e75f5;
    }
Recent Random Colors