Color: #7A7E7E

#7A7E7E Color Information

#7A7E7E is a dark color. The closest websafe version is #7A7E7E. A complement of this color would be #7F7A7A, perceived brightness is 0.49, and the grayscale version is #7C7C7C.

In the HSL color space, this color has a hue angle of 180°,a saturation of 2%, and a lightness of 49%.The HSV representation shows a hue of 180°, a saturation of 3%, and a value of 49%.

In a RGB color space, #7A7E7E is composed of 48% red, 49% green and 49% blue. Whereas in a CMYK color space, it is composed of 3% cyan, 0% magenta, 0% yellow and 51% black.

In the Yxy color space, this color is represented as Y: 20.55, x: 0.3407, and y: 0.3589.

Color Code #7A7E7E

#7A7E7Ergb(122, 126, 126)
HEX
#7A7E7E
RGB
rgb(122, 126, 126)
HSL
hsl(180, 2%, 49%)
HSV
hsv(180, 3%, 49%)
CMYK
3%, 0%, 0%, 51%
XYZ
X: 19.51, Y: 20.55, Z: 17.20
Lab
L: 52.46, a: -1.55, b: -0.55
Name

Shades of Color #7A7E7E

Shades are created by darkening the original color #7A7E7E in equal steps from 0% to 90%. These shades are perfect for creating depth and contrast in your designs. Use them to add visual hierarchy or highlight specific elements in your projects.

Tints of Color #7A7E7E

Tints are created by lightening the original color #7A7E7E in equal steps from 0% to 90%, ending with pure white. These tints are ideal for creating soft backgrounds, subtle highlights, or cohesive UI elements that complement your designs.

#7A7E7Ergb(122, 126, 126)

About #7A7E7E Color Code

In the HSL color space, this color has a hue angle of 180°, a saturation of 2%, and a lightness of 49%. The HSV representation shows a hue of 180°, a saturation of 3%, and a value of 49%.

  • HEX: #7A7E7E
  • RGB: rgb(122, 126, 126)
  • HSL: hsl(180, 2%, 49%)
  • HSV: hsv(180, 3%, 49%)
  • CMYK: 3.00% cyan, 0.00% magenta, 0.00% yellow, 51.00% black
  • XYZ: 19.51, 20.55, 17.20
  • Yxy: 20.55, 0.3407, 0.3589
  • Hunter Lab: 52.46, -1.55, -0.55
  • CIE-Lab: 52.46, -1.55, -0.55

In the XYZ color space, this color is represented as X: 19.51, Y: 20.55, Z: 17.20. The Yxy representation further refines this as Y: 20.55, x: 0.3407, and y: 0.3589.

In the Hunter Lab color space, this color is represented as L: 52.46, a: -1.55, and b: -0.55. Similarly, in the CIE-Lab color space, it is represented as L: 52.46, a: -1.55, and b: -0.55.

Use these color codes in your CSS, design tools, or anywhere you need to specify a color. You can also explore its shades and tints for more creative options.

Triadic Colors of #7A7E7E

Triadic colors are three colors evenly spaced around the color wheel, including #7A7E7E. They create vibrant and balanced color schemes, perfect for designs that need contrast and harmony.

Analogous Colors of #7A7E7E

Analogous colors are adjacent to #7A7E7E on the color wheel. They create harmonious and visually pleasing designs, ideal for projects that need a cohesive look.

Split Complementary Colors of #7A7E7E

Split complementary colors are two colors adjacent to the complementary color of #7A7E7E. They create a balanced and visually appealing color scheme.

Tetradic Colors of #7A7E7E

Tetradic colors form a rectangle on the color wheel, including #7A7E7E. They provide vibrant and diverse color schemes for creative designs.

Monochromatic Colors of #7A7E7E

Monochromatic colors are variations of #7A7E7E, including its shades, tints, and tones. They create elegant and minimalistic designs with a unified color theme.

Complementary Color of #7A7E7E

The complementary color of #7A7E7E is opposite it on the color wheel. Complementary colors provide strong contrast and are ideal for designs that need visual impact and attention.

CSS Examples of #7A7E7E

/* Using HEX */
body {
  background-color: #7a7e7e;
}
/* Using RGB */
body {
  background-color: rgb(122, 126, 126);
}
/* Using RGB with opacity */
body {
  background-color: rgba(122, 126, 126, 0.5);
}
/* Using HSL */
body {
  background-color: hsl(180, 2%, 49%);
}
/* Text color */
p {
  color: #7a7e7e;
}
Text Preview
/* Box shadow */
div {
  box-shadow: 4px 4px #7a7e7e;
}
/* Border color */
.box {
  border: 4px solid #7a7e7e;
}
/* Text shadow */
h1 {
  color: #222;
  text-shadow: 2px 2px 0 #7a7e7e;
}
Text Shadow Preview
/* Background with text */
div {
  background: #7a7e7e;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}
#7A7E7E
On Black Background
#7A7E7E
On White Background
#7A7E7E

HTML Examples of #7A7E7E

<!-- Using HEX -->
<div style="background-color: #7a7e7e; width: 100px; height: 100px;"></div>
<!-- Using RGB -->
<div style="background-color: rgb(122, 126, 126); width: 100px; height: 100px;"></div>
<!-- Using RGB with opacity -->
<div style="background-color: rgba(122, 126, 126, 0.5); width: 100px; height: 100px;"></div>
<!-- Using HSL -->
<div style="background-color: hsl(180, 2%, 49%); width: 100px; height: 100px;"></div>
<!-- Text color -->
<p style="color: #7a7e7e;">This is a text example.</p>
Text Preview
<!-- Box shadow -->
<div style="box-shadow: 4px 4px #7a7e7e; width: 100px; height: 100px;"></div>
<!-- Border color -->
<div style="border: 4px solid #7a7e7e; width: 100px; height: 100px;"></div>
<!-- Text shadow -->
<h1 style="color: #222; text-shadow: 2px 2px 0 #7a7e7e;">Text Shadow Preview</h1>
Text Shadow Preview
<!-- Background with text -->
<div style="background: #7a7e7e; color: #fff; padding: 16px; border-radius: 8px;">
  #7A7E7E
</div>
#7A7E7E
On Black Background
#7A7E7E
On White Background
#7A7E7E

Related Colors of #7A7E7E

These colors are similar to #7A7E7E, with slight variations in hue. Use them to create harmonious designs or explore alternative shades for your projects.