Random Color Generator

#1a29bd Color

Color Codes
Hex Code #1a29bd
RGB Code rgb(26, 41, 189)
HSL Code hsl(234, 76%, 42%)

#1a29bd Color Syntax

rgb()

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

 main {
    background-color: rgb(26, 41, 189);
   }

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(234, 76%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(26, 41, 189, 10%) #1a29bd1a  
rgb(26, 41, 189, 20%) #1a29bd33  
rgb(26, 41, 189, 40%) #1a29bd4C  
rgb(26, 41, 189, 60%) #1a29bd99  
rgb(26, 41, 189, 80%) #1a29bdCC  
rgb(26, 41, 189, 100%) #1a29bdFF  

Saturated and desaturated colors of #1a29bd

HSL Code Preview
hsl(234, 10%, 42%)  
hsl(234, 20%, 42%)  
hsl(234, 40%, 42%)  
hsl(234, 60%, 42%)  
hsl(234, 80%, 42%)  
hsl(234, 100%, 42%)  

#1a29bd Color Usage In CSS

 body {
    color: #1a29bd;
    }
 p {
    color: rgb(26, 41, 189);
    }
 header {
    border-bottom:1px solid #1a29bd;
    }
Recent Random Colors