Random Color Generator

#35254f Color

Color Codes
Hex Code #35254f
RGB Code rgb(53, 37, 79)
HSL Code hsl(263, 36%, 23%)

#35254f Color Syntax

rgb()

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

 main {
    background-color: rgb(53, 37, 79);
   }

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(263, 36%, 23%);
  }

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 #35254f

RGB Code Hex Code Preview
rgb(53, 37, 79, 10%) #35254f1a  
rgb(53, 37, 79, 20%) #35254f33  
rgb(53, 37, 79, 40%) #35254f4C  
rgb(53, 37, 79, 60%) #35254f99  
rgb(53, 37, 79, 80%) #35254fCC  
rgb(53, 37, 79, 100%) #35254fFF  

Saturated and desaturated colors of #35254f

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

#35254f Color Usage In CSS

 body {
    color: #35254f;
    }
 p {
    color: rgb(53, 37, 79);
    }
 header {
    border-bottom:1px solid #35254f;
    }
Recent Random Colors