Random Color Generator

#143640 Color

Color Codes
Hex Code #143640
RGB Code rgb(20, 54, 64)
HSL Code hsl(194, 52%, 16%)

#143640 Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 54, 64);
   }

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(194, 52%, 16%);
  }

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 #143640

RGB Code Hex Code Preview
rgb(20, 54, 64, 10%) #1436401a  
rgb(20, 54, 64, 20%) #14364033  
rgb(20, 54, 64, 40%) #1436404C  
rgb(20, 54, 64, 60%) #14364099  
rgb(20, 54, 64, 80%) #143640CC  
rgb(20, 54, 64, 100%) #143640FF  

Saturated and desaturated colors of #143640

HSL Code Preview
hsl(194, 10%, 16%)  
hsl(194, 20%, 16%)  
hsl(194, 40%, 16%)  
hsl(194, 60%, 16%)  
hsl(194, 80%, 16%)  
hsl(194, 100%, 16%)  

#143640 Color Usage In CSS

 body {
    color: #143640;
    }
 p {
    color: rgb(20, 54, 64);
    }
 header {
    border-bottom:1px solid #143640;
    }
Recent Random Colors