Random Color Generator

#245d83 Color

Color Codes
Hex Code #245d83
RGB Code rgb(36, 93, 131)
HSL Code hsl(204, 57%, 33%)

#245d83 Color Syntax

rgb()

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

 main {
    background-color: rgb(36, 93, 131);
   }

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(204, 57%, 33%);
  }

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 #245d83

RGB Code Hex Code Preview
rgb(36, 93, 131, 10%) #245d831a  
rgb(36, 93, 131, 20%) #245d8333  
rgb(36, 93, 131, 40%) #245d834C  
rgb(36, 93, 131, 60%) #245d8399  
rgb(36, 93, 131, 80%) #245d83CC  
rgb(36, 93, 131, 100%) #245d83FF  

Saturated and desaturated colors of #245d83

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

#245d83 Color Usage In CSS

 body {
    color: #245d83;
    }
 p {
    color: rgb(36, 93, 131);
    }
 header {
    border-bottom:1px solid #245d83;
    }
Recent Random Colors