Random Color Generator

#cae6b3 Color

Color Codes
Hex Code #cae6b3
RGB Code rgb(202, 230, 179)
HSL Code hsl(93, 50%, 80%)

#cae6b3 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 230, 179);
   }

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(93, 50%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(202, 230, 179, 10%) #cae6b31a  
rgb(202, 230, 179, 20%) #cae6b333  
rgb(202, 230, 179, 40%) #cae6b34C  
rgb(202, 230, 179, 60%) #cae6b399  
rgb(202, 230, 179, 80%) #cae6b3CC  
rgb(202, 230, 179, 100%) #cae6b3FF  

Saturated and desaturated colors of #cae6b3

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

#cae6b3 Color Usage In CSS

 body {
    color: #cae6b3;
    }
 p {
    color: rgb(202, 230, 179);
    }
 header {
    border-bottom:1px solid #cae6b3;
    }
Recent Random Colors