Random Color Generator

#61484f Color

Color Codes
Hex Code #61484f
RGB Code rgb(97, 72, 79)
HSL Code hsl(343, 15%, 33%)

#61484f Color Syntax

rgb()

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

 main {
    background-color: rgb(97, 72, 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(343, 15%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(97, 72, 79, 10%) #61484f1a  
rgb(97, 72, 79, 20%) #61484f33  
rgb(97, 72, 79, 40%) #61484f4C  
rgb(97, 72, 79, 60%) #61484f99  
rgb(97, 72, 79, 80%) #61484fCC  
rgb(97, 72, 79, 100%) #61484fFF  

Saturated and desaturated colors of #61484f

HSL Code Preview
hsl(343, 10%, 33%)  
hsl(343, 20%, 33%)  
hsl(343, 40%, 33%)  
hsl(343, 60%, 33%)  
hsl(343, 80%, 33%)  
hsl(343, 100%, 33%)  

#61484f Color Usage In CSS

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