Random Color Generator

#575065 Color

Color Codes
Hex Code #575065
RGB Code rgb(87, 80, 101)
HSL Code hsl(260, 12%, 35%)

#575065 Color Syntax

rgb()

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

 main {
    background-color: rgb(87, 80, 101);
   }

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(260, 12%, 35%);
  }

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

RGB Code Hex Code Preview
rgb(87, 80, 101, 10%) #5750651a  
rgb(87, 80, 101, 20%) #57506533  
rgb(87, 80, 101, 40%) #5750654C  
rgb(87, 80, 101, 60%) #57506599  
rgb(87, 80, 101, 80%) #575065CC  
rgb(87, 80, 101, 100%) #575065FF  

Saturated and desaturated colors of #575065

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

#575065 Color Usage In CSS

 body {
    color: #575065;
    }
 p {
    color: rgb(87, 80, 101);
    }
 header {
    border-bottom:1px solid #575065;
    }
Recent Random Colors