Random Color Generator

#90646d Color

Color Codes
Hex Code #90646d
RGB Code rgb(144, 100, 109)
HSL Code hsl(348, 18%, 48%)

#90646d Color Syntax

rgb()

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

 main {
    background-color: rgb(144, 100, 109);
   }

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(348, 18%, 48%);
  }

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 #90646d

RGB Code Hex Code Preview
rgb(144, 100, 109, 10%) #90646d1a  
rgb(144, 100, 109, 20%) #90646d33  
rgb(144, 100, 109, 40%) #90646d4C  
rgb(144, 100, 109, 60%) #90646d99  
rgb(144, 100, 109, 80%) #90646dCC  
rgb(144, 100, 109, 100%) #90646dFF  

Saturated and desaturated colors of #90646d

HSL Code Preview
hsl(348, 10%, 48%)  
hsl(348, 20%, 48%)  
hsl(348, 40%, 48%)  
hsl(348, 60%, 48%)  
hsl(348, 80%, 48%)  
hsl(348, 100%, 48%)  

#90646d Color Usage In CSS

 body {
    color: #90646d;
    }
 p {
    color: rgb(144, 100, 109);
    }
 header {
    border-bottom:1px solid #90646d;
    }
Recent Random Colors