Random Color Generator

#367a89 Color

Color Codes
Hex Code #367a89
RGB Code rgb(54, 122, 137)
HSL Code hsl(191, 43%, 37%)

#367a89 Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 122, 137);
   }

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(191, 43%, 37%);
  }

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 #367a89

RGB Code Hex Code Preview
rgb(54, 122, 137, 10%) #367a891a  
rgb(54, 122, 137, 20%) #367a8933  
rgb(54, 122, 137, 40%) #367a894C  
rgb(54, 122, 137, 60%) #367a8999  
rgb(54, 122, 137, 80%) #367a89CC  
rgb(54, 122, 137, 100%) #367a89FF  

Saturated and desaturated colors of #367a89

HSL Code Preview
hsl(191, 10%, 37%)  
hsl(191, 20%, 37%)  
hsl(191, 40%, 37%)  
hsl(191, 60%, 37%)  
hsl(191, 80%, 37%)  
hsl(191, 100%, 37%)  

#367a89 Color Usage In CSS

 body {
    color: #367a89;
    }
 p {
    color: rgb(54, 122, 137);
    }
 header {
    border-bottom:1px solid #367a89;
    }
Recent Random Colors