Random Color Generator

#10249c Color

Color Codes
Hex Code #10249c
RGB Code rgb(16, 36, 156)
HSL Code hsl(231, 81%, 34%)

#10249c Color Syntax

rgb()

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

 main {
    background-color: rgb(16, 36, 156);
   }

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(231, 81%, 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 #10249c

RGB Code Hex Code Preview
rgb(16, 36, 156, 10%) #10249c1a  
rgb(16, 36, 156, 20%) #10249c33  
rgb(16, 36, 156, 40%) #10249c4C  
rgb(16, 36, 156, 60%) #10249c99  
rgb(16, 36, 156, 80%) #10249cCC  
rgb(16, 36, 156, 100%) #10249cFF  

Saturated and desaturated colors of #10249c

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

#10249c Color Usage In CSS

 body {
    color: #10249c;
    }
 p {
    color: rgb(16, 36, 156);
    }
 header {
    border-bottom:1px solid #10249c;
    }
Recent Random Colors