Random Color Generator

#ceb3b3 Color

Color Codes
Hex Code #ceb3b3
RGB Code rgb(206, 179, 179)
HSL Code hsl(0, 22%, 75%)

#ceb3b3 Color Syntax

rgb()

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

 main {
    background-color: rgb(206, 179, 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(0, 22%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(206, 179, 179, 10%) #ceb3b31a  
rgb(206, 179, 179, 20%) #ceb3b333  
rgb(206, 179, 179, 40%) #ceb3b34C  
rgb(206, 179, 179, 60%) #ceb3b399  
rgb(206, 179, 179, 80%) #ceb3b3CC  
rgb(206, 179, 179, 100%) #ceb3b3FF  

Saturated and desaturated colors of #ceb3b3

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

#ceb3b3 Color Usage In CSS

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