Random Color Generator

#00cbfb Color

Color Codes
Hex Code #00cbfb
RGB Code rgb(00, 203, 251)
HSL Code hsl(191, 100%, 49%)

#00cbfb Color Syntax

rgb()

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

 main {
    background-color: rgb(00, 203, 251);
   }

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(191, 100%, 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 #00cbfb

RGB Code Hex Code Preview
rgb(00, 203, 251, 10%) #00cbfb1a  
rgb(00, 203, 251, 20%) #00cbfb33  
rgb(00, 203, 251, 40%) #00cbfb4C  
rgb(00, 203, 251, 60%) #00cbfb99  
rgb(00, 203, 251, 80%) #00cbfbCC  
rgb(00, 203, 251, 100%) #00cbfbFF  

Saturated and desaturated colors of #00cbfb

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

#00cbfb Color Usage In CSS

 body {
    color: #00cbfb;
    }
 p {
    color: rgb(00, 203, 251);
    }
 header {
    border-bottom:1px solid #00cbfb;
    }
Recent Random Colors