Random Color Generator

#1885dd Color

Color Codes
Hex Code #1885dd
RGB Code rgb(24, 133, 221)
HSL Code hsl(207, 80%, 48%)

#1885dd Color Syntax

rgb()

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

 main {
    background-color: rgb(24, 133, 221);
   }

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(207, 80%, 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 #1885dd

RGB Code Hex Code Preview
rgb(24, 133, 221, 10%) #1885dd1a  
rgb(24, 133, 221, 20%) #1885dd33  
rgb(24, 133, 221, 40%) #1885dd4C  
rgb(24, 133, 221, 60%) #1885dd99  
rgb(24, 133, 221, 80%) #1885ddCC  
rgb(24, 133, 221, 100%) #1885ddFF  

Saturated and desaturated colors of #1885dd

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

#1885dd Color Usage In CSS

 body {
    color: #1885dd;
    }
 p {
    color: rgb(24, 133, 221);
    }
 header {
    border-bottom:1px solid #1885dd;
    }
Recent Random Colors