Random Color Generator

#950c27 Color

Color Codes
Hex Code #950c27
RGB Code rgb(149, 12, 39)
HSL Code hsl(348, 85%, 32%)

#950c27 Color Syntax

rgb()

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

 main {
    background-color: rgb(149, 12, 39);
   }

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(348, 85%, 32%);
  }

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 #950c27

RGB Code Hex Code Preview
rgb(149, 12, 39, 10%) #950c271a  
rgb(149, 12, 39, 20%) #950c2733  
rgb(149, 12, 39, 40%) #950c274C  
rgb(149, 12, 39, 60%) #950c2799  
rgb(149, 12, 39, 80%) #950c27CC  
rgb(149, 12, 39, 100%) #950c27FF  

Saturated and desaturated colors of #950c27

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

#950c27 Color Usage In CSS

 body {
    color: #950c27;
    }
 p {
    color: rgb(149, 12, 39);
    }
 header {
    border-bottom:1px solid #950c27;
    }
Recent Random Colors