Random Color Generator

#55094f Color

Color Codes
Hex Code #55094f
RGB Code rgb(85, 09, 79)
HSL Code hsl(305, 81%, 18%)

#55094f Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 09, 79);
   }

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(305, 81%, 18%);
  }

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 #55094f

RGB Code Hex Code Preview
rgb(85, 09, 79, 10%) #55094f1a  
rgb(85, 09, 79, 20%) #55094f33  
rgb(85, 09, 79, 40%) #55094f4C  
rgb(85, 09, 79, 60%) #55094f99  
rgb(85, 09, 79, 80%) #55094fCC  
rgb(85, 09, 79, 100%) #55094fFF  

Saturated and desaturated colors of #55094f

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

#55094f Color Usage In CSS

 body {
    color: #55094f;
    }
 p {
    color: rgb(85, 09, 79);
    }
 header {
    border-bottom:1px solid #55094f;
    }
Recent Random Colors