Random Color Generator

#caf864 Color

Color Codes
Hex Code #caf864
RGB Code rgb(202, 248, 100)
HSL Code hsl(79, 91%, 68%)

#caf864 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 248, 100);
   }

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(79, 91%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(202, 248, 100, 10%) #caf8641a  
rgb(202, 248, 100, 20%) #caf86433  
rgb(202, 248, 100, 40%) #caf8644C  
rgb(202, 248, 100, 60%) #caf86499  
rgb(202, 248, 100, 80%) #caf864CC  
rgb(202, 248, 100, 100%) #caf864FF  

Saturated and desaturated colors of #caf864

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

#caf864 Color Usage In CSS

 body {
    color: #caf864;
    }
 p {
    color: rgb(202, 248, 100);
    }
 header {
    border-bottom:1px solid #caf864;
    }
Recent Random Colors