Random Color Generator

#2e2f70 Color

Color Codes
Hex Code #2e2f70
RGB Code rgb(46, 47, 112)
HSL Code hsl(239, 42%, 31%)

#2e2f70 Color Syntax

rgb()

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

 main {
    background-color: rgb(46, 47, 112);
   }

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(239, 42%, 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 #2e2f70

RGB Code Hex Code Preview
rgb(46, 47, 112, 10%) #2e2f701a  
rgb(46, 47, 112, 20%) #2e2f7033  
rgb(46, 47, 112, 40%) #2e2f704C  
rgb(46, 47, 112, 60%) #2e2f7099  
rgb(46, 47, 112, 80%) #2e2f70CC  
rgb(46, 47, 112, 100%) #2e2f70FF  

Saturated and desaturated colors of #2e2f70

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

#2e2f70 Color Usage In CSS

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