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
Onyx #0F0F0F is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Onyx #0F0F0F pairs with Onyx (#0F0F0F) as its complementary color, and Onyx (#0F0F0F) and Onyx (#0F0F0F) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Shades & Tints
The shade and tint range for Onyx #0F0F0F moves from dark #0D0D0D tones through the base color to lighter #F2F2F2 tones, making it useful for depth, hierarchy, and background variation.
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);
}