Random Color Generator

#144bea Color

Color Codes
Hex Code #144bea
RGB Code rgb(20, 75, 234)
HSL Code hsl(225, 84%, 50%)

#144bea Color Syntax

rgb()

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

 main {
    background-color: rgb(20, 75, 234);
   }

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(225, 84%, 50%);
  }

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 #144bea

RGB Code Hex Code Preview
rgb(20, 75, 234, 10%) #144bea1a  
rgb(20, 75, 234, 20%) #144bea33  
rgb(20, 75, 234, 40%) #144bea4C  
rgb(20, 75, 234, 60%) #144bea99  
rgb(20, 75, 234, 80%) #144beaCC  
rgb(20, 75, 234, 100%) #144beaFF  

Saturated and desaturated colors of #144bea

HSL Code Preview
hsl(225, 10%, 50%)  
hsl(225, 20%, 50%)  
hsl(225, 40%, 50%)  
hsl(225, 60%, 50%)  
hsl(225, 80%, 50%)  
hsl(225, 100%, 50%)  

#144bea Color Usage In CSS

 body {
    color: #144bea;
    }
 p {
    color: rgb(20, 75, 234);
    }
 header {
    border-bottom:1px solid #144bea;
    }
Recent Random Colors