Random Color Generator

#1a70dc Color

Color Codes
Hex Code #1a70dc
RGB Code rgb(26, 112, 220)
HSL Code hsl(213, 79%, 48%)

#1a70dc Color Syntax

rgb()

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

 main {
    background-color: rgb(26, 112, 220);
   }

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(213, 79%, 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 #1a70dc

RGB Code Hex Code Preview
rgb(26, 112, 220, 10%) #1a70dc1a  
rgb(26, 112, 220, 20%) #1a70dc33  
rgb(26, 112, 220, 40%) #1a70dc4C  
rgb(26, 112, 220, 60%) #1a70dc99  
rgb(26, 112, 220, 80%) #1a70dcCC  
rgb(26, 112, 220, 100%) #1a70dcFF  

Saturated and desaturated colors of #1a70dc

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

#1a70dc Color Usage In CSS

 body {
    color: #1a70dc;
    }
 p {
    color: rgb(26, 112, 220);
    }
 header {
    border-bottom:1px solid #1a70dc;
    }
Recent Random Colors