AuroMetalSaurus
HEX: #6E7F80 | Modern Palette
Color Specifications
#6E7F80
110, 127, 128
183°, 14% ,50%
14.06, 0.78, 0, 49.8
About AuroMetalSaurus
AuroMetalSaurus (#6E7F80) is a color with RGB(110, 127, 128) and HSL(183.33°, 14.06%, 50.2%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #806F6E, which creates strong contrast. Its triadic palette includes #806E7F and #7F806E. The name comes from AuroMetalSaurus (English (Modern Coined)).
- HEX: #6E7F80
- RGB: 110, 127, 128
- HSL: 183.33°, 14.06%, 50.2%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #806F6E
- Triadic colors: #806E7F, #7F806E
- The name comes from AuroMetalSaurus (English (Modern Coined)).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #6E7F80 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
This term appears to be a modern, portmanteau-style coinage, combining elements from Latin/Greek roots ('Auro' from 'aurum' for gold, 'Saurus' from Greek 'sauros' for lizard) with the English word 'Metal'. It is not found in traditional dictionaries or historical texts. Its structure suggests a descriptive name for a fictional creature, a type of robot, a specific toy, a band name, or a character in a game/story, emphasizing characteristics of being golden, metallic, and reptilian/dinosaur-like. The hashtag '#6e7f80' provided is a hexadecimal color code (a shade of grey-blue), which is unrelated to the etymology or meaning of the word itself, but might be associated with a specific instance where the word and color were used together (e.g., a character's color scheme).
First Recorded Use
Likely 2000s-2020s (as a specific coined term)
Cultural Associations
Terms ending in '-saurus' are commonly used in popular culture to denote dinosaurs or large, reptilian creatures, often in a playful or descriptive manner (e.g., 'dinosaurus', 'tyrannosaurus'). The 'AuroMetal' prefix would immediately evoke images of precious metals, strength, and possibly advanced technology or fantasy elements. It fits well within the naming conventions of fantasy, science fiction, and toy lines.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #6E7F80;
}
/* Text */
.element {
color: #6E7F80;
}
/* Border */
.element {
border: 1px solid #6E7F80;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6E7F80,
#92706E
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6E7F80,
#92706E
);
}
// SCSS variable
$aurometalsaurus: #6E7F80;
// With RGB channels (useful for rgba() usage)
$aurometalsaurus-r: 110;
$aurometalsaurus-g: 127;
$aurometalsaurus-b: 128;
// Usage
.element {
background-color: $aurometalsaurus;
color: rgba($aurometalsaurus-r, $aurometalsaurus-g, $aurometalsaurus-b, 0.8);
}