Sandy Brown

HEX: #F4A460 | Modern Palette

On White
2.03:1
FAIL
On Black
10.33:1
PASS

Color Specifications

HEX
#F4A460
RGB
244, 164, 96
HSL
27°, 87% ,66%
CMYK
0, 33, 61, 4

About Sandy Brown

Sandy Brown (#F4A460) is a color with RGB(244, 164, 96) and HSL(27.6°, 87.1%, 66.7%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #60B0F4, which creates strong contrast. Its triadic palette includes #60F4A4 and #A460F4. The name comes from sandy brown (English).

  • HEX: #F4A460
  • RGB: 244, 164, 96
  • HSL: 27.6°, 87.1%, 66.7%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #60B0F4
  • Triadic colors: #60F4A4, #A460F4
  • The name comes from sandy brown (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 #F4A460 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #C0C05B
Protanopia #AFAF61
Tritanopia #F89D9D
Achromatopsia #B6B6B6

Frequently Asked Questions

Sandy Brown (#F4A460) is a color with RGB(244, 164, 96) and HSL(27.6°, 87.1%, 66.7%).

#F4A460 pairs strongly with #60B0F4 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F4A460 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#F4A460 is commonly associated with Energetic, Bold.

The name Sandy Brown is linked to sandy brown from English, meaning A color resembling the light brown hue of sand..

Name, History & Etymology

Origin Word sandy brown
Meaning A color resembling the light brown hue of sand.
Language English
First Recorded Use Late 19th Century

History

The descriptive compound 'sandy brown' emerged from the need to precisely categorize natural earth tones, particularly those found in sand and soil. Its adoption reflects a broader trend in the late 19th and early 20th centuries to create more nuanced color vocabularies beyond basic color terms. The color gained wider recognition and standardization through its inclusion in various color charts and systems, solidifying its place as a distinct hue. Its association with natural landscapes has remained consistent throughout its usage.

First Recorded Use

The term 'sandy brown' appears in color literature and descriptions from the late 19th century, often used to describe natural tones in textiles, paints, and geological observations. Its use became more standardized with the advent of color systems.

Cultural Associations

Sandy brown is often associated with natural environments, evoking images of beaches, deserts, and unpaved earth, contributing to its perception as a warm, neutral, and grounding color. It frequently appears in interior design and fashion for its versatility and ability to complement a wide range of other colors. The color's naturalistic connotations make it a popular choice for conveying a sense of organic simplicity and understated elegance.

Similar Named Colors

Rajah #FBAB60 ΔE 2.34
Very Light Tangelo #FFB077 ΔE 4.02
Fawn #E5AA70 ΔE 4.51
Neon Carrot #FFA343 ΔE 4.53

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F4A460,
        #60B0F4
    );
}

// SCSS variable
$sandy-brown: #F4A460;

// With RGB channels (useful for rgba() usage)
$sandy-brown-r: 244;
$sandy-brown-g: 164;
$sandy-brown-b: 96;

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