Random Color Generator

#245bbc Color

Color Codes
Hex Code #245bbc
RGB Code rgb(36, 91, 188)
HSL Code hsl(218, 68%, 44%)

#245bbc Color Syntax

rgb()

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

 main {
    background-color: rgb(36, 91, 188);
   }

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(218, 68%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(36, 91, 188, 10%) #245bbc1a  
rgb(36, 91, 188, 20%) #245bbc33  
rgb(36, 91, 188, 40%) #245bbc4C  
rgb(36, 91, 188, 60%) #245bbc99  
rgb(36, 91, 188, 80%) #245bbcCC  
rgb(36, 91, 188, 100%) #245bbcFF  

Saturated and desaturated colors of #245bbc

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

#245bbc Color Usage In CSS

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