Random Color Generator

#1148e2 Color

Color Codes
Hex Code #1148e2
RGB Code rgb(17, 72, 226)
HSL Code hsl(224, 86%, 48%)

#1148e2 Color Syntax

rgb()

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

 main {
    background-color: rgb(17, 72, 226);
   }

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, 86%, 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 #1148e2

RGB Code Hex Code Preview
rgb(17, 72, 226, 10%) #1148e21a  
rgb(17, 72, 226, 20%) #1148e233  
rgb(17, 72, 226, 40%) #1148e24C  
rgb(17, 72, 226, 60%) #1148e299  
rgb(17, 72, 226, 80%) #1148e2CC  
rgb(17, 72, 226, 100%) #1148e2FF  

Saturated and desaturated colors of #1148e2

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

#1148e2 Color Usage In CSS

 body {
    color: #1148e2;
    }
 p {
    color: rgb(17, 72, 226);
    }
 header {
    border-bottom:1px solid #1148e2;
    }
Recent Random Colors