Random Color Generator

#44969d Color

Color Codes
Hex Code #44969d
RGB Code rgb(68, 150, 157)
HSL Code hsl(185, 40%, 44%)

#44969d Color Syntax

rgb()

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

 main {
    background-color: rgb(68, 150, 157);
   }

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(185, 40%, 44%);
  }

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 #44969d

RGB Code Hex Code Preview
rgb(68, 150, 157, 10%) #44969d1a  
rgb(68, 150, 157, 20%) #44969d33  
rgb(68, 150, 157, 40%) #44969d4C  
rgb(68, 150, 157, 60%) #44969d99  
rgb(68, 150, 157, 80%) #44969dCC  
rgb(68, 150, 157, 100%) #44969dFF  

Saturated and desaturated colors of #44969d

HSL Code Preview
hsl(185, 10%, 44%)  
hsl(185, 20%, 44%)  
hsl(185, 40%, 44%)  
hsl(185, 60%, 44%)  
hsl(185, 80%, 44%)  
hsl(185, 100%, 44%)  

#44969d Color Usage In CSS

 body {
    color: #44969d;
    }
 p {
    color: rgb(68, 150, 157);
    }
 header {
    border-bottom:1px solid #44969d;
    }
Recent Random Colors