Random Color Generator

#180da0 Color

Color Codes
Hex Code #180da0
RGB Code rgb(24, 13, 160)
HSL Code hsl(244, 85%, 34%)

#180da0 Color Syntax

rgb()

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

 main {
    background-color: rgb(24, 13, 160);
   }

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(244, 85%, 34%);
  }

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 #180da0

RGB Code Hex Code Preview
rgb(24, 13, 160, 10%) #180da01a  
rgb(24, 13, 160, 20%) #180da033  
rgb(24, 13, 160, 40%) #180da04C  
rgb(24, 13, 160, 60%) #180da099  
rgb(24, 13, 160, 80%) #180da0CC  
rgb(24, 13, 160, 100%) #180da0FF  

Saturated and desaturated colors of #180da0

HSL Code Preview
hsl(244, 10%, 34%)  
hsl(244, 20%, 34%)  
hsl(244, 40%, 34%)  
hsl(244, 60%, 34%)  
hsl(244, 80%, 34%)  
hsl(244, 100%, 34%)  

#180da0 Color Usage In CSS

 body {
    color: #180da0;
    }
 p {
    color: rgb(24, 13, 160);
    }
 header {
    border-bottom:1px solid #180da0;
    }
Recent Random Colors