Random Color Generator

#133dff Color

Color Codes
Hex Code #133dff
RGB Code rgb(19, 61, 255)
HSL Code hsl(229, 100%, 54%)

#133dff Color Syntax

rgb()

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

 main {
    background-color: rgb(19, 61, 255);
   }

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(229, 100%, 54%);
  }

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 #133dff

RGB Code Hex Code Preview
rgb(19, 61, 255, 10%) #133dff1a  
rgb(19, 61, 255, 20%) #133dff33  
rgb(19, 61, 255, 40%) #133dff4C  
rgb(19, 61, 255, 60%) #133dff99  
rgb(19, 61, 255, 80%) #133dffCC  
rgb(19, 61, 255, 100%) #133dffFF  

Saturated and desaturated colors of #133dff

HSL Code Preview
hsl(229, 10%, 54%)  
hsl(229, 20%, 54%)  
hsl(229, 40%, 54%)  
hsl(229, 60%, 54%)  
hsl(229, 80%, 54%)  
hsl(229, 100%, 54%)  

#133dff Color Usage In CSS

 body {
    color: #133dff;
    }
 p {
    color: rgb(19, 61, 255);
    }
 header {
    border-bottom:1px solid #133dff;
    }
Recent Random Colors