Spiro Disco Ball

HEX: #0FC0FC | Modern Palette

On White
2.11:1
FAIL
On Black
9.97:1
PASS

Color Specifications

HEX
#0FC0FC
RGB
15, 192, 252
HSL
195°, 97% ,52%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold
Style
Vivid Cool
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A5A5FD
Protanopia #B6B6FC
Tritanopia #00C9C9
Achromatopsia #B3B3B3

Frequently Asked Questions

Spiro Disco Ball (#0FC0FC) is a color with RGB(15, 192, 252) and HSL(195.2°, 97.5%, 52.4%).

#0FC0FC pairs strongly with #FC4B0F as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#0FC0FC is suitable for Text, Button, Accent and works well with Vivid, Cool styles.

#0FC0FC is commonly associated with Bold.

The name Spiro Disco Ball is linked to Spiro Disco Ball from English, meaning A playful and descriptive name for a specific shade of electric blue, evoking the imagery of a disco ball's reflective qualities and a 'spiro' (spiral) or energetic movement..

Name, History & Etymology

Origin Word Spiro Disco Ball
Meaning A playful and descriptive name for a specific shade of electric blue, evoking the imagery of a disco ball's reflective qualities and a 'spiro' (spiral) or energetic movement.
Language English
First Recorded Use 21st Century

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.

Similar Named Colors

Deep Sky Blue #00BFFF ΔE 0.95
Cyan (process) #00B7EB ΔE 3.10
Vivid Sky Blue #00CCFF ΔE 4.19
Picton Blue #45B1E8 ΔE 4.60

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);
}