Random Color Generator

#453bbb Color

Color Codes
Hex Code #453bbb
RGB Code rgb(69, 59, 187)
HSL Code hsl(245, 52%, 48%)

#453bbb Color Syntax

rgb()

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

 main {
    background-color: rgb(69, 59, 187);
   }

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(245, 52%, 48%);
  }

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 #453bbb

RGB Code Hex Code Preview
rgb(69, 59, 187, 10%) #453bbb1a  
rgb(69, 59, 187, 20%) #453bbb33  
rgb(69, 59, 187, 40%) #453bbb4C  
rgb(69, 59, 187, 60%) #453bbb99  
rgb(69, 59, 187, 80%) #453bbbCC  
rgb(69, 59, 187, 100%) #453bbbFF  

Saturated and desaturated colors of #453bbb

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

#453bbb Color Usage In CSS

 body {
    color: #453bbb;
    }
 p {
    color: rgb(69, 59, 187);
    }
 header {
    border-bottom:1px solid #453bbb;
    }
Recent Random Colors