Random Color Generator

#2a1ebb Color

Color Codes
Hex Code #2a1ebb
RGB Code rgb(42, 30, 187)
HSL Code hsl(245, 72%, 43%)

#2a1ebb Color Syntax

rgb()

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

 main {
    background-color: rgb(42, 30, 187);
   }

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(245, 72%, 43%);
  }

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 #2a1ebb

RGB Code Hex Code Preview
rgb(42, 30, 187, 10%) #2a1ebb1a  
rgb(42, 30, 187, 20%) #2a1ebb33  
rgb(42, 30, 187, 40%) #2a1ebb4C  
rgb(42, 30, 187, 60%) #2a1ebb99  
rgb(42, 30, 187, 80%) #2a1ebbCC  
rgb(42, 30, 187, 100%) #2a1ebbFF  

Saturated and desaturated colors of #2a1ebb

HSL Code Preview
hsl(245, 10%, 43%)  
hsl(245, 20%, 43%)  
hsl(245, 40%, 43%)  
hsl(245, 60%, 43%)  
hsl(245, 80%, 43%)  
hsl(245, 100%, 43%)  

#2a1ebb Color Usage In CSS

 body {
    color: #2a1ebb;
    }
 p {
    color: rgb(42, 30, 187);
    }
 header {
    border-bottom:1px solid #2a1ebb;
    }
Recent Random Colors