Random Color Generator

#242da7 Color

Color Codes
Hex Code #242da7
RGB Code rgb(36, 45, 167)
HSL Code hsl(236, 65%, 40%)

#242da7 Color Syntax

rgb()

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

 main {
    background-color: rgb(36, 45, 167);
   }

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(236, 65%, 40%);
  }

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 #242da7

RGB Code Hex Code Preview
rgb(36, 45, 167, 10%) #242da71a  
rgb(36, 45, 167, 20%) #242da733  
rgb(36, 45, 167, 40%) #242da74C  
rgb(36, 45, 167, 60%) #242da799  
rgb(36, 45, 167, 80%) #242da7CC  
rgb(36, 45, 167, 100%) #242da7FF  

Saturated and desaturated colors of #242da7

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

#242da7 Color Usage In CSS

 body {
    color: #242da7;
    }
 p {
    color: rgb(36, 45, 167);
    }
 header {
    border-bottom:1px solid #242da7;
    }
Recent Random Colors