Random Color Generator

#630ce7 Color

Color Codes
Hex Code #630ce7
RGB Code rgb(99, 12, 231)
HSL Code hsl(264, 90%, 48%)

#630ce7 Color Syntax

rgb()

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

 main {
    background-color: rgb(99, 12, 231);
   }

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(264, 90%, 48%);
  }

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 #630ce7

RGB Code Hex Code Preview
rgb(99, 12, 231, 10%) #630ce71a  
rgb(99, 12, 231, 20%) #630ce733  
rgb(99, 12, 231, 40%) #630ce74C  
rgb(99, 12, 231, 60%) #630ce799  
rgb(99, 12, 231, 80%) #630ce7CC  
rgb(99, 12, 231, 100%) #630ce7FF  

Saturated and desaturated colors of #630ce7

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

#630ce7 Color Usage In CSS

 body {
    color: #630ce7;
    }
 p {
    color: rgb(99, 12, 231);
    }
 header {
    border-bottom:1px solid #630ce7;
    }
Recent Random Colors