Random Color Generator

#cefb01 Color

Color Codes
Hex Code #cefb01
RGB Code rgb(206, 251, 01)
HSL Code hsl(71, 99%, 49%)

#cefb01 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 251, 01);
   }

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, 99%, 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 #cefb01

RGB Code Hex Code Preview
rgb(206, 251, 01, 10%) #cefb011a  
rgb(206, 251, 01, 20%) #cefb0133  
rgb(206, 251, 01, 40%) #cefb014C  
rgb(206, 251, 01, 60%) #cefb0199  
rgb(206, 251, 01, 80%) #cefb01CC  
rgb(206, 251, 01, 100%) #cefb01FF  

Saturated and desaturated colors of #cefb01

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

#cefb01 Color Usage In CSS

 body {
    color: #cefb01;
    }
 p {
    color: rgb(206, 251, 01);
    }
 header {
    border-bottom:1px solid #cefb01;
    }
Recent Random Colors