Random Color Generator

#70fded Color

Color Codes
Hex Code #70fded
RGB Code rgb(112, 253, 237)
HSL Code hsl(173, 97%, 72%)

#70fded Color Syntax

rgb()

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

 main {
    background-color: rgb(112, 253, 237);
   }

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(173, 97%, 72%);
  }

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 #70fded

RGB Code Hex Code Preview
rgb(112, 253, 237, 10%) #70fded1a  
rgb(112, 253, 237, 20%) #70fded33  
rgb(112, 253, 237, 40%) #70fded4C  
rgb(112, 253, 237, 60%) #70fded99  
rgb(112, 253, 237, 80%) #70fdedCC  
rgb(112, 253, 237, 100%) #70fdedFF  

Saturated and desaturated colors of #70fded

HSL Code Preview
hsl(173, 10%, 72%)  
hsl(173, 20%, 72%)  
hsl(173, 40%, 72%)  
hsl(173, 60%, 72%)  
hsl(173, 80%, 72%)  
hsl(173, 100%, 72%)  

#70fded Color Usage In CSS

 body {
    color: #70fded;
    }
 p {
    color: rgb(112, 253, 237);
    }
 header {
    border-bottom:1px solid #70fded;
    }
Recent Random Colors