Random Color Generator

#220054 Color

Color Codes
Hex Code #220054
RGB Code rgb(34, 00, 84)
HSL Code hsl(264, 100%, 16%)

#220054 Color Syntax

rgb()

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

 main {
    background-color: rgb(34, 00, 84);
   }

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(264, 100%, 16%);
  }

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 #220054

RGB Code Hex Code Preview
rgb(34, 00, 84, 10%) #2200541a  
rgb(34, 00, 84, 20%) #22005433  
rgb(34, 00, 84, 40%) #2200544C  
rgb(34, 00, 84, 60%) #22005499  
rgb(34, 00, 84, 80%) #220054CC  
rgb(34, 00, 84, 100%) #220054FF  

Saturated and desaturated colors of #220054

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

#220054 Color Usage In CSS

 body {
    color: #220054;
    }
 p {
    color: rgb(34, 00, 84);
    }
 header {
    border-bottom:1px solid #220054;
    }
Recent Random Colors