Random Color Generator

#933b80 Color

Color Codes
Hex Code #933b80
RGB Code rgb(147, 59, 128)
HSL Code hsl(313, 43%, 40%)

#933b80 Color Syntax

rgb()

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

 main {
    background-color: rgb(147, 59, 128);
   }

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(313, 43%, 40%);
  }

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 #933b80

RGB Code Hex Code Preview
rgb(147, 59, 128, 10%) #933b801a  
rgb(147, 59, 128, 20%) #933b8033  
rgb(147, 59, 128, 40%) #933b804C  
rgb(147, 59, 128, 60%) #933b8099  
rgb(147, 59, 128, 80%) #933b80CC  
rgb(147, 59, 128, 100%) #933b80FF  

Saturated and desaturated colors of #933b80

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

#933b80 Color Usage In CSS

 body {
    color: #933b80;
    }
 p {
    color: rgb(147, 59, 128);
    }
 header {
    border-bottom:1px solid #933b80;
    }
Recent Random Colors