Random Color Generator

#065f66 Color

Color Codes
Hex Code #065f66
RGB Code rgb(06, 95, 102)
HSL Code hsl(184, 89%, 21%)

#065f66 Color Syntax

rgb()

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

 main {
    background-color: rgb(06, 95, 102);
   }

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(184, 89%, 21%);
  }

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 #065f66

RGB Code Hex Code Preview
rgb(06, 95, 102, 10%) #065f661a  
rgb(06, 95, 102, 20%) #065f6633  
rgb(06, 95, 102, 40%) #065f664C  
rgb(06, 95, 102, 60%) #065f6699  
rgb(06, 95, 102, 80%) #065f66CC  
rgb(06, 95, 102, 100%) #065f66FF  

Saturated and desaturated colors of #065f66

HSL Code Preview
hsl(184, 10%, 21%)  
hsl(184, 20%, 21%)  
hsl(184, 40%, 21%)  
hsl(184, 60%, 21%)  
hsl(184, 80%, 21%)  
hsl(184, 100%, 21%)  

#065f66 Color Usage In CSS

 body {
    color: #065f66;
    }
 p {
    color: rgb(06, 95, 102);
    }
 header {
    border-bottom:1px solid #065f66;
    }
Recent Random Colors