Random Color Generator

#2053fa Color

Color Codes
Hex Code #2053fa
RGB Code rgb(32, 83, 250)
HSL Code hsl(226, 96%, 55%)

#2053fa Color Syntax

rgb()

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

 main {
    background-color: rgb(32, 83, 250);
   }

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, 96%, 55%);
  }

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 #2053fa

RGB Code Hex Code Preview
rgb(32, 83, 250, 10%) #2053fa1a  
rgb(32, 83, 250, 20%) #2053fa33  
rgb(32, 83, 250, 40%) #2053fa4C  
rgb(32, 83, 250, 60%) #2053fa99  
rgb(32, 83, 250, 80%) #2053faCC  
rgb(32, 83, 250, 100%) #2053faFF  

Saturated and desaturated colors of #2053fa

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

#2053fa Color Usage In CSS

 body {
    color: #2053fa;
    }
 p {
    color: rgb(32, 83, 250);
    }
 header {
    border-bottom:1px solid #2053fa;
    }
Recent Random Colors