Random Color Generator

#2e0948 Color

Color Codes
Hex Code #2e0948
RGB Code rgb(46, 09, 72)
HSL Code hsl(275, 78%, 16%)

#2e0948 Color Syntax

rgb()

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

 main {
    background-color: rgb(46, 09, 72);
   }

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(275, 78%, 16%);
  }

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

RGB Code Hex Code Preview
rgb(46, 09, 72, 10%) #2e09481a  
rgb(46, 09, 72, 20%) #2e094833  
rgb(46, 09, 72, 40%) #2e09484C  
rgb(46, 09, 72, 60%) #2e094899  
rgb(46, 09, 72, 80%) #2e0948CC  
rgb(46, 09, 72, 100%) #2e0948FF  

Saturated and desaturated colors of #2e0948

HSL Code Preview
hsl(275, 10%, 16%)  
hsl(275, 20%, 16%)  
hsl(275, 40%, 16%)  
hsl(275, 60%, 16%)  
hsl(275, 80%, 16%)  
hsl(275, 100%, 16%)  

#2e0948 Color Usage In CSS

 body {
    color: #2e0948;
    }
 p {
    color: rgb(46, 09, 72);
    }
 header {
    border-bottom:1px solid #2e0948;
    }
Recent Random Colors