Random Color Generator

#cbf31e Color

Color Codes
Hex Code #cbf31e
RGB Code rgb(203, 243, 30)
HSL Code hsl(71, 90%, 54%)

#cbf31e Color Syntax

rgb()

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

 main {
    background-color: rgb(203, 243, 30);
   }

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(71, 90%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(203, 243, 30, 10%) #cbf31e1a  
rgb(203, 243, 30, 20%) #cbf31e33  
rgb(203, 243, 30, 40%) #cbf31e4C  
rgb(203, 243, 30, 60%) #cbf31e99  
rgb(203, 243, 30, 80%) #cbf31eCC  
rgb(203, 243, 30, 100%) #cbf31eFF  

Saturated and desaturated colors of #cbf31e

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

#cbf31e Color Usage In CSS

 body {
    color: #cbf31e;
    }
 p {
    color: rgb(203, 243, 30);
    }
 header {
    border-bottom:1px solid #cbf31e;
    }
Recent Random Colors