Spiro Disco Ball
HEX: #0FC0FC | Modern Palette
Color Specifications
#0FC0FC
15, 192, 252
195°, 97% ,52%
94, 24, 0, 1
About Spiro Disco Ball
Spiro Disco Ball (#0FC0FC) is a color with RGB(15, 192, 252) and HSL(195.2°, 97.5%, 52.4%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #FC4B0F, which creates strong contrast. Its triadic palette includes Shocking Pink (#FC0FC0) and #C0FC0F. The name comes from Spiro Disco Ball (English).
- HEX: #0FC0FC
- RGB: 15, 192, 252
- HSL: 195.2°, 97.5%, 52.4%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #FC4B0F
- Triadic colors: Shocking Pink (#FC0FC0), #C0FC0F
- The name comes from Spiro Disco Ball (English).
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 #0FC0FC from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Spiro Disco Ball' is a modern, descriptive color name, often found in digital color palettes, web design, or graphic design contexts. It's not a traditional color name with a long historical lineage like 'blue' or 'azure.' The 'Spiro' element might refer to a spiral pattern, a sense of dynamism, or even a playful phonetic sound. The 'Disco Ball' part clearly references the reflective, vibrant, and often fragmented light associated with a disco ball, which aligns well with the bright, almost neon quality of the color #0fc0fc. It's a name born from the need to differentiate a vast spectrum of digital colors with memorable and evocative labels.
First Recorded Use
Likely early 2000s or later, as a digital color name.
Cultural Associations
The term 'disco ball' itself carries strong cultural connotations of the disco era (1970s-early 1980s), nightlife, celebration, and a certain retro-futuristic aesthetic. The addition of 'Spiro' adds a layer of uniqueness, perhaps suggesting a swirling light effect or a more energetic, modern twist on the classic disco theme. This color, with its vibrant and almost artificial brightness, fits well into contemporary digital aesthetics, often used to convey energy, technology, or a playful, eye-catching quality. It might be seen in branding for tech companies, fashion, or entertainment.
Code Snippets
/* Background */
.element {
background-color: #0FC0FC;
}
/* Text */
.element {
color: #0FC0FC;
}
/* Border */
.element {
border: 1px solid #0FC0FC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0FC0FC,
#FC4B0F
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0FC0FC,
#FC4B0F
);
}
// SCSS variable
$spiro-disco-ball: #0FC0FC;
// With RGB channels (useful for rgba() usage)
$spiro-disco-ball-r: 15;
$spiro-disco-ball-g: 192;
$spiro-disco-ball-b: 252;
// Usage
.element {
background-color: $spiro-disco-ball;
color: rgba($spiro-disco-ball-r, $spiro-disco-ball-g, $spiro-disco-ball-b, 0.8);
}