Random Color Generator

#46b383 Color

Color Codes
Hex Code #46b383
RGB Code rgb(70, 179, 131)
HSL Code hsl(154, 44%, 49%)

#46b383 Color Syntax

rgb()

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

 main {
    background-color: rgb(70, 179, 131);
   }

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(154, 44%, 49%);
  }

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 #46b383

RGB Code Hex Code Preview
rgb(70, 179, 131, 10%) #46b3831a  
rgb(70, 179, 131, 20%) #46b38333  
rgb(70, 179, 131, 40%) #46b3834C  
rgb(70, 179, 131, 60%) #46b38399  
rgb(70, 179, 131, 80%) #46b383CC  
rgb(70, 179, 131, 100%) #46b383FF  

Saturated and desaturated colors of #46b383

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

#46b383 Color Usage In CSS

 body {
    color: #46b383;
    }
 p {
    color: rgb(70, 179, 131);
    }
 header {
    border-bottom:1px solid #46b383;
    }
Recent Random Colors