Random Color Generator

#2e697c Color

Color Codes
Hex Code #2e697c
RGB Code rgb(46, 105, 124)
HSL Code hsl(195, 46%, 33%)

#2e697c Color Syntax

rgb()

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

 main {
    background-color: rgb(46, 105, 124);
   }

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(195, 46%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(46, 105, 124, 10%) #2e697c1a  
rgb(46, 105, 124, 20%) #2e697c33  
rgb(46, 105, 124, 40%) #2e697c4C  
rgb(46, 105, 124, 60%) #2e697c99  
rgb(46, 105, 124, 80%) #2e697cCC  
rgb(46, 105, 124, 100%) #2e697cFF  

Saturated and desaturated colors of #2e697c

HSL Code Preview
hsl(195, 10%, 33%)  
hsl(195, 20%, 33%)  
hsl(195, 40%, 33%)  
hsl(195, 60%, 33%)  
hsl(195, 80%, 33%)  
hsl(195, 100%, 33%)  

#2e697c Color Usage In CSS

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