Random Color Generator

#2e254f Color

Color Codes
Hex Code #2e254f
RGB Code rgb(46, 37, 79)
HSL Code hsl(253, 36%, 23%)

#2e254f Color Syntax

rgb()

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

 main {
    background-color: rgb(46, 37, 79);
   }

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(253, 36%, 23%);
  }

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

RGB Code Hex Code Preview
rgb(46, 37, 79, 10%) #2e254f1a  
rgb(46, 37, 79, 20%) #2e254f33  
rgb(46, 37, 79, 40%) #2e254f4C  
rgb(46, 37, 79, 60%) #2e254f99  
rgb(46, 37, 79, 80%) #2e254fCC  
rgb(46, 37, 79, 100%) #2e254fFF  

Saturated and desaturated colors of #2e254f

HSL Code Preview
hsl(253, 10%, 23%)  
hsl(253, 20%, 23%)  
hsl(253, 40%, 23%)  
hsl(253, 60%, 23%)  
hsl(253, 80%, 23%)  
hsl(253, 100%, 23%)  

#2e254f Color Usage In CSS

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