Macaroni And Cheese

HEX: #FFBD88 | Modern Palette

On White
1.63:1
FAIL
On Black
12.89:1
PASS

Color Specifications

HEX
#FFBD88
RGB
255, 189, 136
HSL
26°, 100% ,76%
CMYK
0, 26, 47, 0

About Macaroni And Cheese

Macaroni And Cheese (#FFBD88) is a color with RGB(255, 189, 136) and HSL(26.7°, 100%, 76.7%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #88CAFF, which creates strong contrast. Its triadic palette includes #88FFBD and #BD88FF. The name comes from Macaroni and Cheese (English).

  • HEX: #FFBD88
  • RGB: 255, 189, 136
  • HSL: 26.7°, 100%, 76.7%
  • Mood: Bold, Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #88CAFF
  • Triadic colors: #88FFBD, #BD88FF
  • The name comes from Macaroni and Cheese (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 #FFBD88 from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #D3D385
Protanopia #C6C689
Tritanopia #FFB7B7
Achromatopsia #CBCBCB

Frequently Asked Questions

Macaroni And Cheese (#FFBD88) is a color with RGB(255, 189, 136) and HSL(26.7°, 100%, 76.7%).

#FFBD88 pairs strongly with #88CAFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FFBD88 is suitable for Text, Button, Accent and works well with Neon, Warm styles.

#FFBD88 is commonly associated with Bold, Playful.

The name Macaroni And Cheese is linked to Macaroni and Cheese from English, meaning A dish consisting of cooked macaroni pasta and a cheese sauce, most commonly cheddar..

Name, History & Etymology

Origin Word Macaroni and Cheese
Meaning A dish consisting of cooked macaroni pasta and a cheese sauce, most commonly cheddar.
Language English
First Recorded Use 18th Century

History

While the 1769 recipe is often cited, variations of pasta and cheese have existed for centuries. In Italy, dishes like 'lasagne de Berard' (14th century) featured pasta layered with cheese. Thomas Jefferson is credited with introducing macaroni and cheese to the United States after encountering it in France and Italy. He served it at a state dinner in 1802. The dish gained widespread popularity in America, especially after Kraft Foods introduced its boxed macaroni and cheese dinner in 1937, making it an affordable and convenient meal during the Great Depression.

First Recorded Use

The earliest known recipe for a dish similar to modern macaroni and cheese was written in 1769 in Elizabeth Raffald's book, 'The Experienced English Housekeeper'. However, the concept of pasta with cheese has older roots.

Cultural Associations

Macaroni and cheese is a beloved comfort food in many Western countries, particularly the United States and Canada. It is often associated with childhood, home cooking, and holiday meals. Regional variations exist, including baked versions with breadcrumbs, stovetop versions, and those incorporating different cheeses or additions like bacon or vegetables. It holds a significant place in American culinary culture.

Similar Named Colors

Mellow Apricot #F8B878 ΔE 3.36
Very Light Tangelo #FFB077 ΔE 3.66
Peach-orange #FFCC99 ΔE 4.62
Deep Peach #FFCBA4 ΔE 4.82

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFBD88,
        #88CAFF
    );
}

// SCSS variable
$macaroni-and-cheese: #FFBD88;

// With RGB channels (useful for rgba() usage)
$macaroni-and-cheese-r: 255;
$macaroni-and-cheese-g: 189;
$macaroni-and-cheese-b: 136;

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