Random Color Generator

#c1dc94 Color

Color Codes
Hex Code #c1dc94
RGB Code rgb(193, 220, 148)
HSL Code hsl(83, 51%, 72%)

#c1dc94 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 220, 148);
   }

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(83, 51%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(193, 220, 148, 10%) #c1dc941a  
rgb(193, 220, 148, 20%) #c1dc9433  
rgb(193, 220, 148, 40%) #c1dc944C  
rgb(193, 220, 148, 60%) #c1dc9499  
rgb(193, 220, 148, 80%) #c1dc94CC  
rgb(193, 220, 148, 100%) #c1dc94FF  

Saturated and desaturated colors of #c1dc94

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

#c1dc94 Color Usage In CSS

 body {
    color: #c1dc94;
    }
 p {
    color: rgb(193, 220, 148);
    }
 header {
    border-bottom:1px solid #c1dc94;
    }
Recent Random Colors