Random Color Generator

#3453bd Color

Color Codes
Hex Code #3453bd
RGB Code rgb(52, 83, 189)
HSL Code hsl(226, 57%, 47%)

#3453bd Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 83, 189);
   }

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(226, 57%, 47%);
  }

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 #3453bd

RGB Code Hex Code Preview
rgb(52, 83, 189, 10%) #3453bd1a  
rgb(52, 83, 189, 20%) #3453bd33  
rgb(52, 83, 189, 40%) #3453bd4C  
rgb(52, 83, 189, 60%) #3453bd99  
rgb(52, 83, 189, 80%) #3453bdCC  
rgb(52, 83, 189, 100%) #3453bdFF  

Saturated and desaturated colors of #3453bd

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

#3453bd Color Usage In CSS

 body {
    color: #3453bd;
    }
 p {
    color: rgb(52, 83, 189);
    }
 header {
    border-bottom:1px solid #3453bd;
    }
Recent Random Colors