Random Color Generator

#cfe883 Color

Color Codes
Hex Code #cfe883
RGB Code rgb(207, 232, 131)
HSL Code hsl(75, 69%, 71%)

#cfe883 Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 232, 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(75, 69%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(207, 232, 131, 10%) #cfe8831a  
rgb(207, 232, 131, 20%) #cfe88333  
rgb(207, 232, 131, 40%) #cfe8834C  
rgb(207, 232, 131, 60%) #cfe88399  
rgb(207, 232, 131, 80%) #cfe883CC  
rgb(207, 232, 131, 100%) #cfe883FF  

Saturated and desaturated colors of #cfe883

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

#cfe883 Color Usage In CSS

 body {
    color: #cfe883;
    }
 p {
    color: rgb(207, 232, 131);
    }
 header {
    border-bottom:1px solid #cfe883;
    }
Recent Random Colors