Random Color Generator

#357998 Color

Color Codes
Hex Code #357998
RGB Code rgb(53, 121, 152)
HSL Code hsl(199, 48%, 40%)

#357998 Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 121, 152);
   }

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(199, 48%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(53, 121, 152, 10%) #3579981a  
rgb(53, 121, 152, 20%) #35799833  
rgb(53, 121, 152, 40%) #3579984C  
rgb(53, 121, 152, 60%) #35799899  
rgb(53, 121, 152, 80%) #357998CC  
rgb(53, 121, 152, 100%) #357998FF  

Saturated and desaturated colors of #357998

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

#357998 Color Usage In CSS

 body {
    color: #357998;
    }
 p {
    color: rgb(53, 121, 152);
    }
 header {
    border-bottom:1px solid #357998;
    }
Recent Random Colors