Vivid Orange Peel

HEX: #FFA000 | Modern Palette

On White
2.04:1
FAIL
On Black
10.28:1
PASS

Color Specifications

HEX
#FFA000
RGB
255, 160, 0
HSL
37°, 100% ,100%
CMYK
0, 37.25, 100, 0

About Vivid Orange Peel

Vivid Orange Peel (#FFA000) is a color with RGB(255, 160, 0) and HSL(37.65°, 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 #005FFF, which creates strong contrast. Its triadic palette includes #00FFA0 and #A000FF.

  • HEX: #FFA000
  • RGB: 255, 160, 0
  • HSL: 37.65°, 100%, 100%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #005FFF
  • Triadic colors: #00FFA0, #A000FF

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #C2C200
Protanopia #AEAE0A
Tritanopia #FF9696
Achromatopsia #B5B5B5

Frequently Asked Questions

Vivid Orange Peel (#FFA000) is a color with RGB(255, 160, 0) and HSL(37.65°, 100%, 100%).

#FFA000 pairs strongly with #005FFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FFA000 is commonly associated with Playful.

Similar Named Colors

Orange Peel #FF9F00 ΔE 0.35
Orange #FFA500 ΔE 1.78
Orange (RYB) #FB9902 ΔE 2.12
Vivid Gamboge #FF9900 ΔE 2.46

Code Snippets

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

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

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

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

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

// SCSS variable
$vivid-orange-peel: #FFA000;

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

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