Random Color Generator

#1b1986 Color

Color Codes
Hex Code #1b1986
RGB Code rgb(27, 25, 134)
HSL Code hsl(241, 69%, 31%)

#1b1986 Color Syntax

rgb()

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

 main {
    background-color: rgb(27, 25, 134);
   }

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(241, 69%, 31%);
  }

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

RGB Code Hex Code Preview
rgb(27, 25, 134, 10%) #1b19861a  
rgb(27, 25, 134, 20%) #1b198633  
rgb(27, 25, 134, 40%) #1b19864C  
rgb(27, 25, 134, 60%) #1b198699  
rgb(27, 25, 134, 80%) #1b1986CC  
rgb(27, 25, 134, 100%) #1b1986FF  

Saturated and desaturated colors of #1b1986

HSL Code Preview
hsl(241, 10%, 31%)  
hsl(241, 20%, 31%)  
hsl(241, 40%, 31%)  
hsl(241, 60%, 31%)  
hsl(241, 80%, 31%)  
hsl(241, 100%, 31%)  

#1b1986 Color Usage In CSS

 body {
    color: #1b1986;
    }
 p {
    color: rgb(27, 25, 134);
    }
 header {
    border-bottom:1px solid #1b1986;
    }
Recent Random Colors