Random Color Generator

#243c49 Color

Color Codes
Hex Code #243c49
RGB Code rgb(36, 60, 73)
HSL Code hsl(201, 34%, 21%)

#243c49 Color Syntax

rgb()

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

 main {
    background-color: rgb(36, 60, 73);
   }

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(201, 34%, 21%);
  }

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 #243c49

RGB Code Hex Code Preview
rgb(36, 60, 73, 10%) #243c491a  
rgb(36, 60, 73, 20%) #243c4933  
rgb(36, 60, 73, 40%) #243c494C  
rgb(36, 60, 73, 60%) #243c4999  
rgb(36, 60, 73, 80%) #243c49CC  
rgb(36, 60, 73, 100%) #243c49FF  

Saturated and desaturated colors of #243c49

HSL Code Preview
hsl(201, 10%, 21%)  
hsl(201, 20%, 21%)  
hsl(201, 40%, 21%)  
hsl(201, 60%, 21%)  
hsl(201, 80%, 21%)  
hsl(201, 100%, 21%)  

#243c49 Color Usage In CSS

 body {
    color: #243c49;
    }
 p {
    color: rgb(36, 60, 73);
    }
 header {
    border-bottom:1px solid #243c49;
    }
Recent Random Colors