Macaroni And Cheese
HEX: #FFBD88 | Modern Palette
Color Specifications
#FFBD88
255, 189, 136
26°, 100% ,76%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}