Random Color Generator

#200baf Color

Color Codes
Hex Code #200baf
RGB Code rgb(32, 11, 175)
HSL Code hsl(248, 88%, 36%)

#200baf Color Syntax

rgb()

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

 main {
    background-color: rgb(32, 11, 175);
   }

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(248, 88%, 36%);
  }

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 #200baf

RGB Code Hex Code Preview
rgb(32, 11, 175, 10%) #200baf1a  
rgb(32, 11, 175, 20%) #200baf33  
rgb(32, 11, 175, 40%) #200baf4C  
rgb(32, 11, 175, 60%) #200baf99  
rgb(32, 11, 175, 80%) #200bafCC  
rgb(32, 11, 175, 100%) #200bafFF  

Saturated and desaturated colors of #200baf

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

#200baf Color Usage In CSS

 body {
    color: #200baf;
    }
 p {
    color: rgb(32, 11, 175);
    }
 header {
    border-bottom:1px solid #200baf;
    }
Recent Random Colors