Onyx
HEX: #0F0F0F | Modern Palette
Color Specifications
#0F0F0F
15, 15, 15
0°, 0% ,5%
0, 0, 0, 94
About Onyx
Onyx (#0F0F0F) is a color with RGB(15, 15, 15) and HSL(0°, 0%, 5.9%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Warm styles and is suitable for Text, Background, Print. Its complementary color is Onyx (#0F0F0F), which creates strong contrast. Its triadic palette includes Onyx (#0F0F0F) and Onyx (#0F0F0F). The name comes from ὄνυξ (ónux) (Greek).
- HEX: #0F0F0F
- RGB: 15, 15, 15
- HSL: 0°, 0%, 5.9%
- Mood: Minimal
- Style: Monochrome, Warm
- Use case: Text, Background, Print
- Complementary color: Onyx (#0F0F0F)
- Triadic colors: Onyx (#0F0F0F), Onyx (#0F0F0F)
- The name comes from ὄνυξ (ónux) (Greek).
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 #0F0F0F from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#0F0F0F
#0F0F0F
#0F0F0F
#0F0F0F
Frequently Asked Questions
Name, History & Etymology
History
The name 'onyx' comes from the Greek word for 'fingernail' or 'claw,' likely due to its translucent, flesh-colored appearance in some varieties, or perhaps the sharp white bands on some black onyx. It was highly valued by ancient civilizations, including the Egyptians, Greeks, and Romans, who used it for carving cameos, intaglios, and other ornamental objects. Black onyx, in particular, gained popularity later and is often associated with protection and strength. Throughout history, different cultures have attributed various mystical and healing properties to onyx.
First Recorded Use
The term 'onyx' for the gemstone dates back to antiquity, with references in ancient Greek and Roman texts.
Cultural Associations
In ancient Rome, onyx was often used for seals and signet rings. In some cultures, black onyx is believed to ward off negative energy and provide strength and support during difficult times. It is also associated with grounding and self-control. In modern jewelry, black onyx is a popular choice for its sleek, sophisticated appearance.
Code Snippets
/* Background */
.element {
background-color: #0F0F0F;
}
/* Text */
.element {
color: #0F0F0F;
}
/* Border */
.element {
border: 1px solid #0F0F0F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0F0F0F,
#0F0F0F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0F0F0F,
#0F0F0F
);
}
// SCSS variable
$onyx: #0F0F0F;
// With RGB channels (useful for rgba() usage)
$onyx-r: 15;
$onyx-g: 15;
$onyx-b: 15;
// Usage
.element {
background-color: $onyx;
color: rgba($onyx-r, $onyx-g, $onyx-b, 0.8);
}