Random Color Generator

#369fcb Color

Color Codes
Hex Code #369fcb
RGB Code rgb(54, 159, 203)
HSL Code hsl(198, 59%, 50%)

#369fcb Color Syntax

rgb()

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

 main {
    background-color: rgb(54, 159, 203);
   }

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(198, 59%, 50%);
  }

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 #369fcb

RGB Code Hex Code Preview
rgb(54, 159, 203, 10%) #369fcb1a  
rgb(54, 159, 203, 20%) #369fcb33  
rgb(54, 159, 203, 40%) #369fcb4C  
rgb(54, 159, 203, 60%) #369fcb99  
rgb(54, 159, 203, 80%) #369fcbCC  
rgb(54, 159, 203, 100%) #369fcbFF  

Saturated and desaturated colors of #369fcb

HSL Code Preview
hsl(198, 10%, 50%)  
hsl(198, 20%, 50%)  
hsl(198, 40%, 50%)  
hsl(198, 60%, 50%)  
hsl(198, 80%, 50%)  
hsl(198, 100%, 50%)  

#369fcb Color Usage In CSS

 body {
    color: #369fcb;
    }
 p {
    color: rgb(54, 159, 203);
    }
 header {
    border-bottom:1px solid #369fcb;
    }
Recent Random Colors