Random Color Generator

#1a32b8 Color

Color Codes
Hex Code #1a32b8
RGB Code rgb(26, 50, 184)
HSL Code hsl(231, 75%, 41%)

#1a32b8 Color Syntax

rgb()

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

 main {
    background-color: rgb(26, 50, 184);
   }

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(231, 75%, 41%);
  }

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 #1a32b8

RGB Code Hex Code Preview
rgb(26, 50, 184, 10%) #1a32b81a  
rgb(26, 50, 184, 20%) #1a32b833  
rgb(26, 50, 184, 40%) #1a32b84C  
rgb(26, 50, 184, 60%) #1a32b899  
rgb(26, 50, 184, 80%) #1a32b8CC  
rgb(26, 50, 184, 100%) #1a32b8FF  

Saturated and desaturated colors of #1a32b8

HSL Code Preview
hsl(231, 10%, 41%)  
hsl(231, 20%, 41%)  
hsl(231, 40%, 41%)  
hsl(231, 60%, 41%)  
hsl(231, 80%, 41%)  
hsl(231, 100%, 41%)  

#1a32b8 Color Usage In CSS

 body {
    color: #1a32b8;
    }
 p {
    color: rgb(26, 50, 184);
    }
 header {
    border-bottom:1px solid #1a32b8;
    }
Recent Random Colors