Random Color Generator

#214a57 Color

Color Codes
Hex Code #214a57
RGB Code rgb(33, 74, 87)
HSL Code hsl(194, 45%, 24%)

#214a57 Color Syntax

rgb()

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

 main {
    background-color: rgb(33, 74, 87);
   }

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, 45%, 24%);
  }

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 #214a57

RGB Code Hex Code Preview
rgb(33, 74, 87, 10%) #214a571a  
rgb(33, 74, 87, 20%) #214a5733  
rgb(33, 74, 87, 40%) #214a574C  
rgb(33, 74, 87, 60%) #214a5799  
rgb(33, 74, 87, 80%) #214a57CC  
rgb(33, 74, 87, 100%) #214a57FF  

Saturated and desaturated colors of #214a57

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

#214a57 Color Usage In CSS

 body {
    color: #214a57;
    }
 p {
    color: rgb(33, 74, 87);
    }
 header {
    border-bottom:1px solid #214a57;
    }
Recent Random Colors