Vivid Orange

HEX: #FF5F00 | Modern Palette

On White
3.05:1
FAIL
On Black
6.89:1
PASS

Color Specifications

HEX
#FF5F00
RGB
255, 95, 0
HSL
22°, 100% ,100%
CMYK
0, 62.75, 100, 0

About Vivid Orange

Vivid Orange (#FF5F00) is a color with RGB(255, 95, 0) and HSL(22.35°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #00A0FF, which creates strong contrast. Its triadic palette includes #00FF5F and #5F00FF.

  • HEX: #FF5F00
  • RGB: 255, 95, 0
  • HSL: 22.35°, 100%, 100%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #00A0FF
  • Triadic colors: #00FF5F, #5F00FF

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 #FF5F00 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #A4A400
Protanopia #7F7F0D
Tritanopia #FF5959
Achromatopsia #949494

Frequently Asked Questions

Vivid Orange (#FF5F00) is a color with RGB(255, 95, 0) and HSL(22.35°, 100%, 100%).

#FF5F00 pairs strongly with #00A0FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF5F00 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FF5F00 is commonly associated with Playful.

Similar Named Colors

Orange (Pantone) #FF5800 ΔE 1.65
Willpower Orange #FD5800 ΔE 1.72
Safety Orange #FF6700 ΔE 2.03
Giants Orange #FE5A1D ΔE 3.53

Code Snippets

/* Background */
.element {
    background-color: #FF5F00;
}

/* Text */
.element {
    color: #FF5F00;
}

/* Border */
.element {
    border: 1px solid #FF5F00;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF5F00,
        #FFFFFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF5F00,
        #FFFFFF
    );
}

// SCSS variable
$vivid-orange: #FF5F00;

// With RGB channels (useful for rgba() usage)
$vivid-orange-r: 255;
$vivid-orange-g: 95;
$vivid-orange-b: 0;

// Usage
.element {
    background-color: $vivid-orange;
    color: rgba($vivid-orange-r, $vivid-orange-g, $vivid-orange-b, 0.8);
}