Random Color Generator

#2555d4 Color

Color Codes
Hex Code #2555d4
RGB Code rgb(37, 85, 212)
HSL Code hsl(224, 70%, 49%)

#2555d4 Color Syntax

rgb()

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

 main {
    background-color: rgb(37, 85, 212);
   }

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(224, 70%, 49%);
  }

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 #2555d4

RGB Code Hex Code Preview
rgb(37, 85, 212, 10%) #2555d41a  
rgb(37, 85, 212, 20%) #2555d433  
rgb(37, 85, 212, 40%) #2555d44C  
rgb(37, 85, 212, 60%) #2555d499  
rgb(37, 85, 212, 80%) #2555d4CC  
rgb(37, 85, 212, 100%) #2555d4FF  

Saturated and desaturated colors of #2555d4

HSL Code Preview
hsl(224, 10%, 49%)  
hsl(224, 20%, 49%)  
hsl(224, 40%, 49%)  
hsl(224, 60%, 49%)  
hsl(224, 80%, 49%)  
hsl(224, 100%, 49%)  

#2555d4 Color Usage In CSS

 body {
    color: #2555d4;
    }
 p {
    color: rgb(37, 85, 212);
    }
 header {
    border-bottom:1px solid #2555d4;
    }
Recent Random Colors