Random Color Generator

#c35363 Color

Color Codes
Hex Code #c35363
RGB Code rgb(195, 83, 99)
HSL Code hsl(351, 48%, 55%)

#c35363 Color Syntax

rgb()

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

 main {
    background-color: rgb(195, 83, 99);
   }

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(351, 48%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(195, 83, 99, 10%) #c353631a  
rgb(195, 83, 99, 20%) #c3536333  
rgb(195, 83, 99, 40%) #c353634C  
rgb(195, 83, 99, 60%) #c3536399  
rgb(195, 83, 99, 80%) #c35363CC  
rgb(195, 83, 99, 100%) #c35363FF  

Saturated and desaturated colors of #c35363

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

#c35363 Color Usage In CSS

 body {
    color: #c35363;
    }
 p {
    color: rgb(195, 83, 99);
    }
 header {
    border-bottom:1px solid #c35363;
    }
Recent Random Colors